summaryrefslogtreecommitdiff
path: root/sccomp/source
diff options
context:
space:
mode:
Diffstat (limited to 'sccomp/source')
-rw-r--r--sccomp/source/solver/CoinMPSolver.cxx2
-rw-r--r--sccomp/source/solver/LpsolveSolver.cxx2
-rw-r--r--sccomp/source/solver/SolverComponent.hxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/sccomp/source/solver/CoinMPSolver.cxx b/sccomp/source/solver/CoinMPSolver.cxx
index 0fad6ca63ceb..348bcf75f721 100644
--- a/sccomp/source/solver/CoinMPSolver.cxx
+++ b/sccomp/source/solver/CoinMPSolver.cxx
@@ -37,7 +37,7 @@ class CoinMPSolver : public SolverComponent
{
public:
CoinMPSolver() {}
- virtual ~CoinMPSolver() {}
+ virtual ~CoinMPSolver() override {}
private:
virtual void SAL_CALL solve() throw(css::uno::RuntimeException, std::exception) override;
diff --git a/sccomp/source/solver/LpsolveSolver.cxx b/sccomp/source/solver/LpsolveSolver.cxx
index 1652cb11c9ec..b07691eae3a4 100644
--- a/sccomp/source/solver/LpsolveSolver.cxx
+++ b/sccomp/source/solver/LpsolveSolver.cxx
@@ -68,7 +68,7 @@ class LpsolveSolver : public SolverComponent
{
public:
LpsolveSolver() {}
- virtual ~LpsolveSolver() {}
+ virtual ~LpsolveSolver() override {}
private:
virtual void SAL_CALL solve() throw(css::uno::RuntimeException, std::exception) override;
diff --git a/sccomp/source/solver/SolverComponent.hxx b/sccomp/source/solver/SolverComponent.hxx
index 7f9ba1bb94a4..dd0d21affd3b 100644
--- a/sccomp/source/solver/SolverComponent.hxx
+++ b/sccomp/source/solver/SolverComponent.hxx
@@ -99,7 +99,7 @@ protected:
public:
SolverComponent();
- virtual ~SolverComponent();
+ virtual ~SolverComponent() override;
DECLARE_XINTERFACE()
DECLARE_XTYPEPROVIDER()