organize function with other members of the same class

issue#70
Houtan Bastani 2019-12-20 10:29:12 +01:00
parent 32c3910e18
commit 76b461de4a
No known key found for this signature in database
GPG Key ID: 000094FB955BE169
1 changed files with 7 additions and 7 deletions

View File

@ -1914,13 +1914,6 @@ OsrParamsStatement::writeJsonOutput(ostream &output) const
output << "}";
}
OsrStatement::OsrStatement(SymbolList symbol_list_arg,
OptionsList options_list_arg) :
symbol_list{move(symbol_list_arg)},
options_list{move(options_list_arg)}
{
}
OsrParamsBoundsStatement::OsrParamsBoundsStatement(vector<OsrParams> osr_params_list_arg) :
osr_params_list{move(osr_params_list_arg)}
{
@ -1973,6 +1966,13 @@ OsrParamsBoundsStatement::writeJsonOutput(ostream &output) const
<< "}";
}
OsrStatement::OsrStatement(SymbolList symbol_list_arg,
OptionsList options_list_arg) :
symbol_list{move(symbol_list_arg)},
options_list{move(options_list_arg)}
{
}
void
OsrStatement::checkPass(ModFileStructure &mod_file_struct, WarningConsolidation &warnings)
{