We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2470543 commit 9f81023Copy full SHA for 9f81023
src/Material/BoundsCheck.cxx
@@ -32,7 +32,7 @@ namespace tfel {
32
const std::string& b) {
33
throw(OutOfBoundsException(
34
"BoundsCheckBase::throwOutOfUpperBoundsException : variable '" + n +
35
- "' is below its lower bound (" + v + ">" + b + ")"));
+ "' is above its upper bound (" + v + ">" + b + ")"));
36
}
37
38
void BoundsCheckBase::throwOutOfBoundsException(const std::string& n,
@@ -59,7 +59,7 @@ namespace tfel {
59
60
using namespace std;
61
cerr << "BoundsCheckBase::displayOutOfUpperBoundsWarning : variable '"
62
- << n << "' is below its lower bound (" << v << ">" << b << ")"
+ << n << "' is above its upper bound (" << v << ">" << b << ")"
63
<< endl;
64
65
0 commit comments