Fixed 80 columns width limit

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@474 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2012-06-22 20:40:12 +00:00
parent 37572bf825
commit 912ffe4cf2

View file

@ -27,8 +27,10 @@ namespace mock
MOCK_BINARY_CONSTRAINT( equal, actual == boost::unwrap_ref( expected_ ) ) MOCK_BINARY_CONSTRAINT( equal, actual == boost::unwrap_ref( expected_ ) )
MOCK_BINARY_CONSTRAINT( less, 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( greater, actual > boost::unwrap_ref( expected_ ) )
MOCK_BINARY_CONSTRAINT( less_equal, actual <= boost::unwrap_ref( expected_ ) ) MOCK_BINARY_CONSTRAINT(
MOCK_BINARY_CONSTRAINT( greater_equal, actual >= boost::unwrap_ref( expected_ ) ) less_equal, actual <= boost::unwrap_ref( expected_ ) )
MOCK_BINARY_CONSTRAINT(
greater_equal, actual >= boost::unwrap_ref( expected_ ) )
namespace detail namespace detail
{ {