summaryrefslogtreecommitdiff
path: root/include/formula/FormulaCompiler.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-02-07 12:15:04 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-02-07 12:35:59 +0100
commit3f56e6551b41a8a4768f975b36208b1a4fdb3328 (patch)
treecf201aac612871939593e046b76dd5f5b57ef02b /include/formula/FormulaCompiler.hxx
parent73e117d19a67c2a1ed2fa28aaee36f42759f0755 (diff)
loplugin:deletedspecial
Change-Id: Id13844313c63552bec4f9ae7333a14948b386f03
Diffstat (limited to 'include/formula/FormulaCompiler.hxx')
-rw-r--r--include/formula/FormulaCompiler.hxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/include/formula/FormulaCompiler.hxx b/include/formula/FormulaCompiler.hxx
index 0d959c69fdca..ace9f3b383e3 100644
--- a/include/formula/FormulaCompiler.hxx
+++ b/include/formula/FormulaCompiler.hxx
@@ -83,9 +83,8 @@ public:
bool mbCore : 1; /// If mapping was setup by core, not filters
bool mbEnglish : 1; /// If English symbols and external names
- OpCodeMap(); // prevent usage
- OpCodeMap( const OpCodeMap& ); // prevent usage
- OpCodeMap& operator=( const OpCodeMap& ); // prevent usage
+ OpCodeMap( const OpCodeMap& ) SAL_DELETED_FUNCTION;
+ OpCodeMap& operator=( const OpCodeMap& ) SAL_DELETED_FUNCTION;
public:
@@ -362,9 +361,8 @@ private:
{
FormulaTokenRef pPrevFac;
FormulaCompiler* pCompiler;
- // not implemented
- CurrentFactor( const CurrentFactor& );
- CurrentFactor& operator=( const CurrentFactor& );
+ CurrentFactor( const CurrentFactor& ) SAL_DELETED_FUNCTION;
+ CurrentFactor& operator=( const CurrentFactor& ) SAL_DELETED_FUNCTION;
public:
explicit CurrentFactor( FormulaCompiler* pComp )
: pPrevFac( pComp->pCurrentFactorToken )