From 912ffe4cf20eaaf88ee4c1d4c06274315df8c912 Mon Sep 17 00:00:00 2001 From: mat007 Date: Fri, 22 Jun 2012 20:40:12 +0000 Subject: [PATCH] Fixed 80 columns width limit git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@474 860be788-9bd5-4423-9f1e-828f051e677b --- turtle/constraints.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/turtle/constraints.hpp b/turtle/constraints.hpp index 7614f06..fd7ded1 100644 --- a/turtle/constraints.hpp +++ b/turtle/constraints.hpp @@ -27,8 +27,10 @@ namespace mock MOCK_BINARY_CONSTRAINT( equal, actual == boost::unwrap_ref( expected_ ) ) MOCK_BINARY_CONSTRAINT( less, actual < boost::unwrap_ref( expected_ ) ) MOCK_BINARY_CONSTRAINT( greater, actual > boost::unwrap_ref( expected_ ) ) - MOCK_BINARY_CONSTRAINT( less_equal, actual <= boost::unwrap_ref( expected_ ) ) - MOCK_BINARY_CONSTRAINT( greater_equal, actual >= boost::unwrap_ref( expected_ ) ) + MOCK_BINARY_CONSTRAINT( + less_equal, actual <= boost::unwrap_ref( expected_ ) ) + MOCK_BINARY_CONSTRAINT( + greater_equal, actual >= boost::unwrap_ref( expected_ ) ) namespace detail {