Boost logo

Boost-Commit :

From: daniel_james_at_[hidden]
Date: 2008-04-23 02:56:19


Author: danieljames
Date: 2008-04-23 02:56:19 EDT (Wed, 23 Apr 2008)
New Revision: 44736
URL: http://svn.boost.org/trac/boost/changeset/44736

Log:
Comment out a test which requires a C++0x std::pair.

Text files modified:
   branches/unordered/trunk/libs/unordered/test/unordered/unnecessary_copy_tests.cpp | 7 ++++---
   1 files changed, 4 insertions(+), 3 deletions(-)

Modified: branches/unordered/trunk/libs/unordered/test/unordered/unnecessary_copy_tests.cpp
==============================================================================
--- branches/unordered/trunk/libs/unordered/test/unordered/unnecessary_copy_tests.cpp (original)
+++ branches/unordered/trunk/libs/unordered/test/unordered/unnecessary_copy_tests.cpp 2008-04-23 02:56:19 EDT (Wed, 23 Apr 2008)
@@ -227,9 +227,10 @@
         // Just in case a did get moved
         std::pair<count_copies const, count_copies> b;
 
- reset();
- x.emplace(b.first.tag_);
- COPY_COUNT(2); MOVE_COUNT(0);
+ // This test requires a C++0x std::pair. Which gcc hasn't got yet.
+ //reset();
+ //x.emplace(b.first.tag_);
+ //COPY_COUNT(2); MOVE_COUNT(0);
 
         //
         // 2 arguments


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