From 749dfc4044faedd1232a87af9be0cb6fe16ca5d2 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 28 May 2008 11:15:13 +0000 Subject: [PATCH] Fix precedence error. [SVN r45866] --- test/unordered/move_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unordered/move_tests.cpp b/test/unordered/move_tests.cpp index 3ed99138..53f1d662 100644 --- a/test/unordered/move_tests.cpp +++ b/test/unordered/move_tests.cpp @@ -129,7 +129,7 @@ namespace move_tests BOOST_CHECK(count == test::global_object_count); #else BOOST_CHECK(test::global_object_count.constructions - count.constructions <= - test::is_map::value ? 50 : 25); + (test::is_map::value ? 50 : 25)); BOOST_CHECK(count.instances == test::global_object_count.instances); #endif test::check_container(y, v);