preprocessor: fix uninitialized variable warning

time-shift
Houtan Bastani 2015-10-30 18:11:51 +01:00
parent 3f3e05d23d
commit 4ed2a0dc9d
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{
}