|
Boost-Commit : |
From: daniel_james_at_[hidden]
Date: 2008-05-28 07:15:13
Author: danieljames
Date: 2008-05-28 07:15:13 EDT (Wed, 28 May 2008)
New Revision: 45866
URL: http://svn.boost.org/trac/boost/changeset/45866
Log:
Fix precedence error.
Text files modified:
trunk/libs/unordered/test/unordered/move_tests.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/libs/unordered/test/unordered/move_tests.cpp
==============================================================================
--- trunk/libs/unordered/test/unordered/move_tests.cpp (original)
+++ trunk/libs/unordered/test/unordered/move_tests.cpp 2008-05-28 07:15:13 EDT (Wed, 28 May 2008)
@@ -129,7 +129,7 @@
BOOST_CHECK(count == test::global_object_count);
#else
BOOST_CHECK(test::global_object_count.constructions - count.constructions <=
- test::is_map<T>::value ? 50 : 25);
+ (test::is_map<T>::value ? 50 : 25));
BOOST_CHECK(count.instances == test::global_object_count.instances);
#endif
test::check_container(y, v);
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk