summaryrefslogtreecommitdiff
path: root/sc/source/core/opencl/opbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/opencl/opbase.hxx')
-rw-r--r--sc/source/core/opencl/opbase.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/opencl/opbase.hxx b/sc/source/core/opencl/opbase.hxx
index e99ecc5319ce..ec7661ae1e27 100644
--- a/sc/source/core/opencl/opbase.hxx
+++ b/sc/source/core/opencl/opbase.hxx
@@ -144,7 +144,7 @@ class VectorRef : public DynamicKernelArgument
{
public:
VectorRef( const ScCalcConfig& config, const std::string& s, const FormulaTreeNodeRef& ft, int index = 0 );
- virtual ~VectorRef();
+ virtual ~VectorRef() override;
/// Generate declaration
virtual void GenDecl( std::stringstream& ss ) const override;
@@ -197,7 +197,7 @@ public:
typedef std::vector<DynamicKernelArgumentRef> SubArguments;
virtual void GenSlidingWindowFunction( std::stringstream&,
const std::string&, SubArguments& ) = 0;
- virtual ~SlidingFunctionBase() { }
+ virtual ~SlidingFunctionBase() override { }
};
class Normal : public SlidingFunctionBase