summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/formula/FormulaCompiler.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/formula/FormulaCompiler.hxx b/include/formula/FormulaCompiler.hxx
index b450ed69113e..a90bc82dede1 100644
--- a/include/formula/FormulaCompiler.hxx
+++ b/include/formula/FormulaCompiler.hxx
@@ -27,6 +27,7 @@
#include <boost/shared_ptr.hpp>
#include <boost/unordered_map.hpp>
+#include <boost/noncopyable.hpp>
#include <com/sun/star/uno/Sequence.hxx>
@@ -62,7 +63,7 @@ struct FormulaArrayStack
typedef ::boost::unordered_map< OUString, OpCode, OUStringHash, ::std::equal_to< OUString > > OpCodeHashMap;
typedef ::boost::unordered_map< OUString, OUString, OUStringHash, ::std::equal_to< OUString > > ExternalHashMap;
-class FORMULA_DLLPUBLIC FormulaCompiler
+class FORMULA_DLLPUBLIC FormulaCompiler : boost::noncopyable
{
public:
FormulaCompiler();