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

preprocessor: fix uninitialized variable warning

parent 5d4835ba
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@
#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), 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