Skip to content

Commit

Permalink
Fixing namespace std
Browse files Browse the repository at this point in the history
  • Loading branch information
anaga670 committed Aug 7, 2019
1 parent fe10685 commit 783c0c7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/VTSMisc.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ void compareParam(std::vector<std::string> param_array,
std::vector<bool> &pass_fail);

void compareParam(std::vector<std::string> param_array,
map<int, double> act_val,
map<int, double> &comp_answer,
map<int, bool> &pass_fail);
std::map<int, double> act_val,
std::map<int, double> &comp_answer,
std::map<int, bool> &pass_fail);

void compareParam(std::vector<std::string> param_array,
double *act_val,
Expand All @@ -116,12 +116,12 @@ void compareParam(std::vector<std::string> param_array,

void compareParam(std::vector<std::string> param_array,
std::vector<std::string> act_val,
map<int, bool> &pass_fail);
std::map<int, bool> &pass_fail);

void compareParam(std::vector<std::string> param_array,
map<int, double> act_val,
map<int, double> &comp_answer,
map<int, bool> &pass_fail);
std::map<int, double> act_val,
std::map<int, double> &comp_answer,
std::map<int, bool> &pass_fail);

// recordLog I
void recordLog(std::string datafile,
Expand Down

0 comments on commit 783c0c7

Please sign in to comment.