From c293fbed63954d85944387edbe31dc7935f44bef Mon Sep 17 00:00:00 2001 From: mat007 Date: Wed, 5 Jun 2013 06:15:53 +0000 Subject: [PATCH] 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 --- turtle/constraints.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/turtle/constraints.hpp b/turtle/constraints.hpp index b1a7827..72184e4 100644 --- a/turtle/constraints.hpp +++ b/turtle/constraints.hpp @@ -40,7 +40,8 @@ namespace mock ( boost::test_tools::check_is_close( \ actual, expected, \ 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 {