From ad9ccebc6c5aa26247e51572ec38a9aa60428710 Mon Sep 17 00:00:00 2001 From: Houtan Bastani <houtan@dynare.org> Date: Fri, 30 Oct 2015 18:13:37 +0100 Subject: [PATCH] preprocessor: make notation accord with the rest of the preprocessor --- preprocessor/SteadyStateModel.cc | 4 ++-- preprocessor/SteadyStateModel.hh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/preprocessor/SteadyStateModel.cc b/preprocessor/SteadyStateModel.cc index d2a1f856de..4533c41f27 100644 --- a/preprocessor/SteadyStateModel.cc +++ b/preprocessor/SteadyStateModel.cc @@ -22,8 +22,8 @@ #include "SteadyStateModel.hh" -SteadyStateModel::SteadyStateModel(SymbolTable &symbol_table_arg, NumericalConstants &num_constants, ExternalFunctionsTable &external_functions_table_arg, const StaticModel &static_model_arg) : - DataTree(symbol_table_arg, num_constants, external_functions_table_arg), static_model(static_model_arg) +SteadyStateModel::SteadyStateModel(SymbolTable &symbol_table_arg, NumericalConstants &num_constants_arg, ExternalFunctionsTable &external_functions_table_arg, const StaticModel &static_model_arg) : + DataTree(symbol_table_arg, num_constants_arg, external_functions_table_arg), static_model(static_model_arg) { } diff --git a/preprocessor/SteadyStateModel.hh b/preprocessor/SteadyStateModel.hh index f79b358f5c..a7e0a5424f 100644 --- a/preprocessor/SteadyStateModel.hh +++ b/preprocessor/SteadyStateModel.hh @@ -34,7 +34,7 @@ private: const StaticModel &static_model; public: - SteadyStateModel(SymbolTable &symbol_table_arg, NumericalConstants &num_constants, ExternalFunctionsTable &external_functions_table_arg, const StaticModel &static_model_arg); + SteadyStateModel(SymbolTable &symbol_table_arg, NumericalConstants &num_constants_arg, ExternalFunctionsTable &external_functions_table_arg, const StaticModel &static_model_arg); //! Add an expression of the form "var = expr;" void addDefinition(int symb_id, expr_t expr); //! Add an expression of the form "[ var1, var2, ... ] = expr;" -- GitLab