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

Merge recent bug fixes from Trunk.

Refs #6014
Refs #5832
Refs #5934
Refs #6001
Refs #5982
Refs #5914
Refs #5927

[SVN r74984]
This commit is contained in:
John Maddock
2011-10-16 18:57:30 +00:00
parent 352b9016f6
commit b11ef8b992
303 changed files with 9433 additions and 9472 deletions

View File

@@ -22,8 +22,8 @@ namespace std{ using ::sqrt; using ::tan; using ::tanh; }
#endif
#ifndef VERBOSE
#undef BOOST_MESSAGE
#define BOOST_MESSAGE(x)
#undef BOOST_TEST_MESSAGE
#define BOOST_TEST_MESSAGE(x)
#endif
//
@@ -59,7 +59,7 @@ bool check_complex(const std::complex<T>& a, const std::complex<T>& b, int max_e
}
else
{
BOOST_MESSAGE("Expected {0,0} but got: " << b);
BOOST_TEST_MESSAGE("Expected {0,0} but got: " << b);
}
}
return result;
@@ -73,7 +73,7 @@ bool check_complex(const std::complex<T>& a, const std::complex<T>& b, int max_e
}
else
{
BOOST_MESSAGE("Found {0,0} but expected: " << a);
BOOST_TEST_MESSAGE("Found {0,0} but expected: " << a);
}
}