Skip to content
Snippets Groups Projects
Commit 4ed2a0dc authored by Houtan Bastani's avatar Houtan Bastani
Browse files

preprocessor: fix uninitialized variable warning

parent 3f3e05d2
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "SteadyStateModel.hh" #include "SteadyStateModel.hh"
SteadyStateModel::SteadyStateModel(SymbolTable &symbol_table_arg, NumericalConstants &num_constants, ExternalFunctionsTable &external_functions_table_arg, const StaticModel &static_model_arg) : 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), static_model(static_model_arg) DataTree(symbol_table_arg, num_constants, external_functions_table_arg), static_model(static_model_arg)
{ {
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment