We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d21c48 commit f31d0a0Copy full SHA for f31d0a0
doc/modules/ROOT/pages/examples.adoc
@@ -156,7 +156,7 @@ template <typename T>
156
bool float_equal(T lhs, T rhs)
157
{
158
using std::fabs;
159
- return fabs(lhs - rhs) < std::numeric_limits<T>::epsilon(); // numeric_limits is overloaded for all decimal types
+ return fabs(lhs - rhs) < std::numeric_limits<T>::epsilon(); // numeric_limits is specialized for all decimal types
160
}
161
162
0 commit comments