Kaydet (Commit) 31a24849 authored tarafından Matúš Kukan's avatar Matúš Kukan

override specifier 'override' not allowed on a destructor

Change-Id: I8bcc31900a95f2b7600645decafdfe528343d6d7
üst 0f614959
......@@ -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;
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment