Skip to content

Commit

Permalink
revert unintended change of previous commit
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@25192 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
rfranke committed Mar 21, 2015
1 parent 0a27636 commit 4d1eb66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SimulationRuntime/cpp/Include/Core/System/PreVariables.h
Expand Up @@ -3,11 +3,11 @@
class PreVariables
{
public:
PreVariables(int numOfPreVars) : /*_pre_real_vars_idx(), _pre_int_vars_idx(), _pre_bool_vars_idx(),*/ __z(NULL), __zDot(NULL)
PreVariables(int numOfPreVars) : _pre_real_vars_idx(), _pre_int_vars_idx(), _pre_bool_vars_idx(), __z(NULL), __zDot(NULL)
{
_pre_vars = new double[numOfPreVars];
}
PreVariables() : /*_pre_real_vars_idx(), _pre_int_vars_idx(), _pre_bool_vars_idx(),*/ __z(NULL), __zDot(NULL)
PreVariables() : _pre_real_vars_idx(), _pre_int_vars_idx(), _pre_bool_vars_idx(), __z(NULL), __zDot(NULL)
{
_pre_vars = new double[0];
}
Expand Down

0 comments on commit 4d1eb66

Please sign in to comment.