2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Tabs removed, end newlines added, and max/min () to meet inspection report comments.

[SVN r71380]
This commit is contained in:
Paul A. Bristow
2011-04-19 18:00:17 +00:00
parent 957aac784a
commit 70adb63c87
2 changed files with 4 additions and 4 deletions

View File

@@ -89,8 +89,8 @@ template<class CharType, class ValType> void basic_test_finite_impl()
ValType a1 = (ValType)1.2;
ValType a2 = (ValType)-3.5;
ValType a3 = std::numeric_limits<ValType>::max();
ValType a4 = -std::numeric_limits<ValType>::max();
ValType a3 = (std::numeric_limits<ValType>::max)();
ValType a4 = -(std::numeric_limits<ValType>::max)();
ss << a1 << ' ' << a2 << ' ' << a3 << ' ' << a4;
ValType b1, b2, b3, b4;

View File

@@ -68,8 +68,8 @@ template<class CharType, class ValType> void trap_test_finite_impl()
ValType a1 = (ValType)1.2;
ValType a2 = (ValType)-3.5;
ValType a3 = std::numeric_limits<ValType>::max();
ValType a4 = -std::numeric_limits<ValType>::max();
ValType a3 = (std::numeric_limits<ValType>::max)();
ValType a4 = -(std::numeric_limits<ValType>::max)();
ss << a1 << ' ' << a2 << ' ' << a3 << ' ' << a4;
ValType b1, b2, b3, b4;