Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63834 - sandbox/SOC/2010/bits_and_ints/libs/integer/test
From: muriloufg_at_[hidden]
Date: 2010-07-10 20:14:58


Author: murilov
Date: 2010-07-10 20:14:56 EDT (Sat, 10 Jul 2010)
New Revision: 63834
URL: http://svn.boost.org/trac/boost/changeset/63834

Log:
Added some spaces to avoid <:: be parsed as [
Text files modified:
   sandbox/SOC/2010/bits_and_ints/libs/integer/test/count_trailing_zeros_test.cpp | 2 +-
   sandbox/SOC/2010/bits_and_ints/libs/integer/test/pop_count_test.cpp | 2 +-
   sandbox/SOC/2010/bits_and_ints/libs/integer/test/sign_extend_test.cpp | 2 +-
   3 files changed, 3 insertions(+), 3 deletions(-)

Modified: sandbox/SOC/2010/bits_and_ints/libs/integer/test/count_trailing_zeros_test.cpp
==============================================================================
--- sandbox/SOC/2010/bits_and_ints/libs/integer/test/count_trailing_zeros_test.cpp (original)
+++ sandbox/SOC/2010/bits_and_ints/libs/integer/test/count_trailing_zeros_test.cpp 2010-07-10 20:14:56 EDT (Sat, 10 Jul 2010)
@@ -14,7 +14,7 @@
 
 #define COUNT_ZEROS_TEST(x, y) \
 BOOST_TEST((::boost::count_trailing_zeros(x) == y)); \
-BOOST_TEST(((::boost::mpl::count_trailing_zeros< ::boost::mpl::integral_c<::boost::uintmax_t, x> >::value) == y))
+BOOST_TEST(((::boost::mpl::count_trailing_zeros< ::boost::mpl::integral_c< ::boost::uintmax_t, x> >::value) == y))
 
 
 // Main testing function

Modified: sandbox/SOC/2010/bits_and_ints/libs/integer/test/pop_count_test.cpp
==============================================================================
--- sandbox/SOC/2010/bits_and_ints/libs/integer/test/pop_count_test.cpp (original)
+++ sandbox/SOC/2010/bits_and_ints/libs/integer/test/pop_count_test.cpp 2010-07-10 20:14:56 EDT (Sat, 10 Jul 2010)
@@ -14,7 +14,7 @@
 
 #define POP_COUNT_TEST(x, y) \
 BOOST_TEST((::boost::pop_count(x) == y)); \
-BOOST_TEST(((::boost::mpl::pop_count< ::boost::mpl::integral_c<::boost::uintmax_t, x> >::value) == y))
+BOOST_TEST(((::boost::mpl::pop_count< ::boost::mpl::integral_c< ::boost::uintmax_t, x> >::value) == y))
 
 
 // Main testing function

Modified: sandbox/SOC/2010/bits_and_ints/libs/integer/test/sign_extend_test.cpp
==============================================================================
--- sandbox/SOC/2010/bits_and_ints/libs/integer/test/sign_extend_test.cpp (original)
+++ sandbox/SOC/2010/bits_and_ints/libs/integer/test/sign_extend_test.cpp 2010-07-10 20:14:56 EDT (Sat, 10 Jul 2010)
@@ -14,7 +14,7 @@
 // Macros to compact code
 #define SIGN_EXTEND_TEST(d, b, e) \
         BOOST_TEST(::boost::sign_extend(d, b) == e); \
- BOOST_TEST((::boost::static_sign_extend<::boost::int64_t, d, b>::value) == e)
+ BOOST_TEST((::boost::static_sign_extend< ::boost::int64_t, d, b>::value) == e)
 
 // Main testing function
 int main(int, char* [])


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