diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-04-03 11:52:11 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-04-03 11:52:19 +0200 |
commit | 31a24849bac2b3bc080eb341d8150b3994432395 (patch) | |
tree | c2ccb418f6be1eb8d0fe37bd72b365b53e67ed5a /sccomp | |
parent | 0f6149593129c3d208f07d0d017dec0c71760778 (diff) |
override specifier 'override' not allowed on a destructor
Change-Id: I8bcc31900a95f2b7600645decafdfe528343d6d7
Diffstat (limited to 'sccomp')
-rw-r--r-- | sccomp/source/solver/CoinMPSolver.cxx | 2 | ||||
-rw-r--r-- | sccomp/source/solver/LpsolveSolver.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sccomp/source/solver/CoinMPSolver.cxx b/sccomp/source/solver/CoinMPSolver.cxx index 13ecd3bcf956..a7127e38724b 100644 --- a/sccomp/source/solver/CoinMPSolver.cxx +++ b/sccomp/source/solver/CoinMPSolver.cxx @@ -35,7 +35,7 @@ class CoinMPSolver : public SolverComponent { public: CoinMPSolver() {} - virtual ~CoinMPSolver() SAL_OVERRIDE {} + virtual ~CoinMPSolver() {} private: virtual void SAL_CALL solve() throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; diff --git a/sccomp/source/solver/LpsolveSolver.cxx b/sccomp/source/solver/LpsolveSolver.cxx index 3c2a014ac602..a977f91ac000 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() SAL_OVERRIDE {} + virtual ~LpsolveSolver() {} private: virtual void SAL_CALL solve() throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; |