mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
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:
parent
37572bf825
commit
912ffe4cf2
1 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue