diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-13 14:57:46 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-14 10:15:10 +0100 |
commit | 13e4f86a51e26b89a22c4c6412c113f475392619 (patch) | |
tree | d3c277fefcfc7764ea3730309823cf6b829babc7 /slideshow | |
parent | 304e9c4c3734d7f0f4b62d221a9c70908b6d746d (diff) |
-Werror,-Wunused-member-function
Change-Id: I69caf8ce9395c6318f1452e5bed3752e1c282528
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/expressionnodefactory.cxx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/slideshow/source/engine/expressionnodefactory.cxx b/slideshow/source/engine/expressionnodefactory.cxx index 1130ba794e4b..536a7fa8d5e8 100644 --- a/slideshow/source/engine/expressionnodefactory.cxx +++ b/slideshow/source/engine/expressionnodefactory.cxx @@ -167,21 +167,6 @@ namespace slideshow } }; - class ComposedExpression : public BinaryExpressionBase - { - public: - ComposedExpression( const ExpressionNodeSharedPtr& rFirstArg, - const ExpressionNodeSharedPtr& rSecondArg ) : - BinaryExpressionBase( rFirstArg, rSecondArg ) - { - } - - virtual double operator()( double t ) const - { - return (*mpFirstArg)( (*mpSecondArg)(t) ); - } - }; - class MinExpression : public BinaryExpressionBase { public: |