[Libreoffice-commits] core.git: sccomp/source
Matúš Kukan
matus.kukan at collabora.com
Thu Apr 3 02:53:05 PDT 2014
sccomp/source/solver/CoinMPSolver.cxx | 2 +-
sccomp/source/solver/LpsolveSolver.cxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 31a24849bac2b3bc080eb341d8150b3994432395
Author: Matúš Kukan <matus.kukan at collabora.com>
Date: Thu Apr 3 11:52:11 2014 +0200
override specifier 'override' not allowed on a destructor
Change-Id: I8bcc31900a95f2b7600645decafdfe528343d6d7
diff --git a/sccomp/source/solver/CoinMPSolver.cxx b/sccomp/source/solver/CoinMPSolver.cxx
index 13ecd3b..a7127e3 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 3c2a014..a977f91 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;
More information about the Libreoffice-commits
mailing list