Fixed line length greater than 80 characters

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@669 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2013-06-05 06:15:53 +00:00
parent f97fb87f81
commit c293fbed63

View file

@ -40,7 +40,8 @@ namespace mock
( boost::test_tools::check_is_close( \ ( boost::test_tools::check_is_close( \
actual, expected, \ actual, expected, \
boost::test_tools::fraction_tolerance( tolerance ) ) ) ) boost::test_tools::fraction_tolerance( tolerance ) ) ) )
MOCK_CONSTRAINT_EXT( near, 2, ( expected, tolerance ), std::abs( actual - expected ) < tolerance ) MOCK_CONSTRAINT_EXT( near, 2, ( expected, tolerance ), \
std::abs( actual - expected ) < tolerance )
namespace detail namespace detail
{ {