Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r61077 - branches/release/libs/utility/swap/test
From: nielsdekker_at_[hidden]
Date: 2010-04-05 15:21:13


Author: niels_dekker
Date: 2010-04-05 15:21:12 EDT (Mon, 05 Apr 2010)
New Revision: 61077
URL: http://svn.boost.org/trac/boost/changeset/61077

Log:
Merged std_bitset.cpp (boost::swap test) from trunk r60292 through r60334 and r61065 through r61076, including #3984 fix.
Properties modified:
   branches/release/libs/utility/swap/test/std_bitset.cpp (contents, props changed)
Text files modified:
   branches/release/libs/utility/swap/test/std_bitset.cpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: branches/release/libs/utility/swap/test/std_bitset.cpp
==============================================================================
--- branches/release/libs/utility/swap/test/std_bitset.cpp (original)
+++ branches/release/libs/utility/swap/test/std_bitset.cpp 2010-04-05 15:21:12 EDT (Mon, 05 Apr 2010)
@@ -1,4 +1,4 @@
-// Copyright (c) 2008 Joseph Gauterin, Niels Dekker
+// Copyright (c) 2008 - 2010 Joseph Gauterin, Niels Dekker
 //
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
@@ -17,8 +17,8 @@
 int test_main(int, char*[])
 {
   typedef std::bitset<8> bitset_type;
- const bitset_type initial_value1 = 1ul;
- const bitset_type initial_value2 = 2ul;
+ const bitset_type initial_value1 = 1;
+ const bitset_type initial_value2 = 2;
 
   bitset_type object1 = initial_value1;
   bitset_type object2 = initial_value2;


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