Skip to content

Commit

Permalink
- fixed build
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@24165 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Marcus Walther committed Jan 23, 2015
1 parent e1a5eb3 commit cba6a8a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SimulationRuntime/cpp/Include/Solver/CVode/CVode.h
Expand Up @@ -117,7 +117,7 @@ class Cvode
virtual void solve(const SOLVERCALL command = UNDEF_CALL);

/// Liefert den Status des Solvers nach Beendigung der Simulation
virtual const ISolver::SOLVERSTATUS getSolverStatus()
virtual ISolver::SOLVERSTATUS getSolverStatus()
{
return (SolverDefaultImplementation::getSolverStatus());
};
Expand Down
2 changes: 1 addition & 1 deletion SimulationRuntime/cpp/Include/Solver/Euler/Euler.h
Expand Up @@ -46,7 +46,7 @@ class Euler : public ISolver, public SolverDefaultImplementation
virtual void solve(const SOLVERCALL command = UNDEF_CALL);

/// Provides the status of the solver after returning
const ISolver::SOLVERSTATUS getSolverStatus();
ISolver::SOLVERSTATUS getSolverStatus();

/// Write out statistical information (statistical information of last simulation, e.g. time, number of steps, etc.)
virtual void writeSimulationInfo();
Expand Down
2 changes: 1 addition & 1 deletion SimulationRuntime/cpp/Include/Solver/Peer/Peer.h
Expand Up @@ -110,7 +110,7 @@ class Peer
virtual void solve(const SOLVERCALL command = UNDEF_CALL);

/// Liefert den Status des Solvers nach Beendigung der Simulation
virtual const ISolver::SOLVERSTATUS getSolverStatus()
virtual ISolver::SOLVERSTATUS getSolverStatus()
{
return (SolverDefaultImplementation::getSolverStatus());
};
Expand Down
2 changes: 1 addition & 1 deletion SimulationRuntime/cpp/Solver/Euler/Euler.cpp
Expand Up @@ -156,7 +156,7 @@ void Euler::setInitStepSize(const double& h)


/// Provides the status of the solver after returning
const ISolver::SOLVERSTATUS Euler::getSolverStatus()
ISolver::SOLVERSTATUS Euler::getSolverStatus()
{
return (SolverDefaultImplementation::getSolverStatus());
};
Expand Down

0 comments on commit cba6a8a

Please sign in to comment.