Skip to content
Snippets Groups Projects
Commit c2b2cac8 authored by Berenger Bramas's avatar Berenger Bramas
Browse files

Update error message when asking not compiled config

parent 9acf151d
Branches
Tags
2 merge requests!21Bugfix/nansampling,!3Bugfix/event manager show html
......@@ -48,7 +48,7 @@ struct For2<RetType,
IterType2, CurrentIter2, iterTo2, IterStep2,
Func, false, Args...>{
static RetType evaluate(IterType2 value2, Args... args){
std::cout << __FUNCTION__ << " no matching value found\n";
std::cout << __FUNCTION__ << "[ERROR] template values for loop 2 " << value2 << " does not exist\n";
return RetType();
}
};
......@@ -83,7 +83,7 @@ struct For1<RetType,
IterType2, IterFrom2, iterTo2, IterStep2,
Func, false, Args...>{
static RetType evaluate(IterType1 value1, IterType2 value2, Args... args){
std::cout << __FUNCTION__ << " no matching value found\n";
std::cout << __FUNCTION__ << "[ERROR] template values for loop 1 " << value1 << " does not exist\n";
return RetType();
}
};
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment