From 97bf12d6d63afc9550986d024fc1488f6ba2b145 Mon Sep 17 00:00:00 2001 From: Michel Juillard Date: Thu, 2 Feb 2012 21:10:47 +0100 Subject: [PATCH] propagating the change in calling sequence for CheckPass() --- Shocks.cc | 6 +++--- Shocks.hh | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Shocks.cc b/Shocks.cc index eebd89fd..a909cb15 100644 --- a/Shocks.cc +++ b/Shocks.cc @@ -193,7 +193,7 @@ ShocksStatement::writeCovarAndCorrShocks(ostream &output) const } void -ShocksStatement::checkPass(ModFileStructure &mod_file_struct) +ShocksStatement::checkPass(ModFileStructure &mod_file_struct, WarningConsolidation &warnings) { // Workaround for trac ticket #35 mod_file_struct.shocks_present = true; @@ -242,7 +242,7 @@ MShocksStatement::writeOutput(ostream &output, const string &basename) const } void -MShocksStatement::checkPass(ModFileStructure &mod_file_struct) +MShocksStatement::checkPass(ModFileStructure &mod_file_struct, WarningConsolidation &warnings) { // Workaround for trac ticket #35 mod_file_struct.shocks_present = true; @@ -256,7 +256,7 @@ ConditionalForecastPathsStatement::ConditionalForecastPathsStatement(const Abstr } void -ConditionalForecastPathsStatement::checkPass(ModFileStructure &mod_file_struct) +ConditionalForecastPathsStatement::checkPass(ModFileStructure &mod_file_struct, WarningConsolidation &warnings) { for (AbstractShocksStatement::det_shocks_t::const_iterator it = paths.begin(); it != paths.end(); it++) diff --git a/Shocks.hh b/Shocks.hh index 51475f71..1f4c34c9 100644 --- a/Shocks.hh +++ b/Shocks.hh @@ -72,7 +72,7 @@ public: const covar_and_corr_shocks_t &corr_shocks_arg, const SymbolTable &symbol_table_arg); virtual void writeOutput(ostream &output, const string &basename) const; - virtual void checkPass(ModFileStructure &mod_file_struct); + virtual void checkPass(ModFileStructure &mod_file_struct, WarningConsolidation &warnings); }; class MShocksStatement : public AbstractShocksStatement @@ -81,7 +81,7 @@ public: MShocksStatement(const det_shocks_t &det_shocks_arg, const SymbolTable &symbol_table_arg); virtual void writeOutput(ostream &output, const string &basename) const; - virtual void checkPass(ModFileStructure &mod_file_struct); + virtual void checkPass(ModFileStructure &mod_file_struct, WarningConsolidation &warnings); }; class ConditionalForecastPathsStatement : public Statement @@ -93,7 +93,7 @@ private: public: ConditionalForecastPathsStatement(const AbstractShocksStatement::det_shocks_t &paths_arg, const SymbolTable &symbol_table_arg); - virtual void checkPass(ModFileStructure &mod_file_struct); + virtual void checkPass(ModFileStructure &mod_file_struct, WarningConsolidation &warnings); virtual void writeOutput(ostream &output, const string &basename) const; };