summaryrefslogtreecommitdiffstats
path: root/connectivity/source/commontools/RowFunctionParser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/commontools/RowFunctionParser.cxx')
-rw-r--r--connectivity/source/commontools/RowFunctionParser.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/connectivity/source/commontools/RowFunctionParser.cxx b/connectivity/source/commontools/RowFunctionParser.cxx
index ef03cecd3d30..9490b6730844 100644
--- a/connectivity/source/commontools/RowFunctionParser.cxx
+++ b/connectivity/source/commontools/RowFunctionParser.cxx
@@ -243,13 +243,11 @@ public:
class UnaryFunctionFunctor
{
- const ExpressionFunct meFunct;
ParserContextSharedPtr mpContext;
public:
- UnaryFunctionFunctor( const ExpressionFunct eFunct, const ParserContextSharedPtr& rContext ) :
- meFunct( eFunct ),
+ UnaryFunctionFunctor( const ParserContextSharedPtr& rContext ) :
mpContext( rContext )
{
}
@@ -338,7 +336,7 @@ public:
unaryFunction =
(COLUMN >> '(' >> integer >> ')' )
- [ UnaryFunctionFunctor( UNARY_FUNC_COLUMN, self.getContext()) ]
+ [ UnaryFunctionFunctor( self.getContext()) ]
;
assignment =