Boost logo

Boost-Commit :

From: jared_at_[hidden]
Date: 2007-05-21 22:03:12


Author: jared
Date: 2007-05-21 22:03:11 EDT (Mon, 21 May 2007)
New Revision: 4169
URL: http://svn.boost.org/trac/boost/changeset/4169

Log:
Whoops. Fixed tuple build.

Text files modified:
   sandbox/explore/libs/explore/test/boost_tuple.cpp | 3 ++-
   1 files changed, 2 insertions(+), 1 deletions(-)

Modified: sandbox/explore/libs/explore/test/boost_tuple.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/boost_tuple.cpp (original)
+++ sandbox/explore/libs/explore/test/boost_tuple.cpp 2007-05-21 22:03:11 EDT (Mon, 21 May 2007)
@@ -12,13 +12,14 @@
 #include <string>
 #include <sstream>
 #include <boost/tuple/tuple.hpp>
+#include <boost/tuple/tuple_io.hpp>
 #include "../../../boost/explore/explore.hpp"
 
 BOOST_AUTO_TEST_CASE( basic_tuple_test )
 {
         std::stringstream str_out;
         
- boost::tuple<int, double> t(1, 3.14);
+ boost::tuples::tuple<int, double> t(1, 3.14);
         explore::print(t, str_out);
         BOOST_CHECK_EQUAL(str_out.str(), "[1, 3.14]");
 }
\ No newline at end of file


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