Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r55947 - sandbox/explore/libs/explore/test
From: jmcintyre_at_[hidden]
Date: 2009-08-31 22:32:38


Author: jared
Date: 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
New Revision: 55947
URL: http://svn.boost.org/trac/boost/changeset/55947

Log:
Explore builds in gcc again
Text files modified:
   sandbox/explore/libs/explore/test/boost_array.cpp | 4 ++--
   sandbox/explore/libs/explore/test/boost_range.cpp | 2 +-
   sandbox/explore/libs/explore/test/boost_tuple.cpp | 2 +-
   sandbox/explore/libs/explore/test/boost_variant.cpp | 8 ++++----
   sandbox/explore/libs/explore/test/c_array.cpp | 4 ++--
   sandbox/explore/libs/explore/test/columnated.cpp | 2 +-
   sandbox/explore/libs/explore/test/custom_format_simple.cpp | 10 +++++-----
   sandbox/explore/libs/explore/test/html_table_output.cpp | 2 +-
   sandbox/explore/libs/explore/test/multi_dim_test.cpp | 4 ++--
   sandbox/explore/libs/explore/test/simple_types.cpp | 10 +++++-----
   sandbox/explore/libs/explore/test/std_deque.cpp | 4 ++--
   sandbox/explore/libs/explore/test/std_list.cpp | 6 +++---
   sandbox/explore/libs/explore/test/std_map.cpp | 10 +++++-----
   sandbox/explore/libs/explore/test/std_pair.cpp | 4 ++--
   sandbox/explore/libs/explore/test/std_set.cpp | 6 +++---
   sandbox/explore/libs/explore/test/std_vector.cpp | 4 ++--
   sandbox/explore/libs/explore/test/user_defined_container.cpp | 4 ++--
   17 files changed, 43 insertions(+), 43 deletions(-)

Modified: sandbox/explore/libs/explore/test/boost_array.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/boost_array.cpp (original)
+++ sandbox/explore/libs/explore/test/boost_array.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -17,7 +17,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE(basic_array_stream_test, C, test_types)
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     boost::array<int,0> ai0;
     str_out << ai0;
@@ -45,7 +45,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE(vector_in_array_stream_test, C, test_types)
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::vector<int> vi;
     vi.push_back(1);

Modified: sandbox/explore/libs/explore/test/boost_range.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/boost_range.cpp (original)
+++ sandbox/explore/libs/explore/test/boost_range.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -15,7 +15,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( boost_range_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::vector<int> vi;
     str_out << boost::explore::make_iterator_range(vi);

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 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -16,7 +16,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_tuple_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     boost::tuples::tuple<int, double> t(1, 3.14);
     str_out << t;

Modified: sandbox/explore/libs/explore/test/boost_variant.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/boost_variant.cpp (original)
+++ sandbox/explore/libs/explore/test/boost_variant.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -15,8 +15,8 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_variant_stream_test, C, test_types )
 {
- typedef test_traits<C>::string_type string_type;
- test_traits<C>::stream_type str_out;
+ typedef typename test_traits<C>::string_type string_type;
+ typename test_traits<C>::stream_type str_out;
 
     boost::variant< int, string_type, std::vector<int> > varVal;
 
@@ -44,8 +44,8 @@
 BOOST_AUTO_TEST_CASE_TEMPLATE( cool_variant_stream_test, C, test_types )
 {
     using namespace boost::explore;
- typedef test_traits<C>::string_type string_type;
- test_traits<C>::stream_type str_out;
+ typedef typename test_traits<C>::string_type string_type;
+ typename test_traits<C>::stream_type str_out;
 
     std::vector<boost::variant< int, string_type, std::vector<int> > > varVec;
     string_type name(str_to<C>("Joe"));

Modified: sandbox/explore/libs/explore/test/c_array.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/c_array.cpp (original)
+++ sandbox/explore/libs/explore/test/c_array.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -16,7 +16,7 @@
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_c_array_stream_test, C, test_types )
 {
     using namespace boost::explore;
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     int arri1[] = {1};
     str_out << arri1;
@@ -32,7 +32,7 @@
 BOOST_AUTO_TEST_CASE_TEMPLATE( vector_in_c_array_stream_test, C, test_types )
 {
     using namespace boost::explore;
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::vector<int> vi;
     vi.push_back(1);

Modified: sandbox/explore/libs/explore/test/columnated.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/columnated.cpp (original)
+++ sandbox/explore/libs/explore/test/columnated.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -32,7 +32,7 @@
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_columnate_stream_test, C, test_types )
 {
     using namespace boost::explore;
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
     std::vector<int> vi;
 
     for( int i = 0; i < 12; ++i )

Modified: sandbox/explore/libs/explore/test/custom_format_simple.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/custom_format_simple.cpp (original)
+++ sandbox/explore/libs/explore/test/custom_format_simple.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -33,7 +33,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_vector_custom_format_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
     str_out << basic_stream_format;
 
     std::vector<int> vi;
@@ -66,8 +66,8 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_map_custom_format_stream_test, C, test_types )
 {
- typedef test_traits<C>::string_type string_type;
- test_traits<C>::stream_type str_out;
+ typedef typename test_traits<C>::string_type string_type;
+ typename test_traits<C>::stream_type str_out;
     str_out << basic_stream_format;
 
     std::map<int, string_type> mis;
@@ -96,7 +96,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( begin_end_helper_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
     
     std::vector<int> vi;
     vi.push_back(1);
@@ -108,7 +108,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( delimeters_helper_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
     
     std::vector<int> vi;
     vi.push_back(1);

Modified: sandbox/explore/libs/explore/test/html_table_output.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/html_table_output.cpp (original)
+++ sandbox/explore/libs/explore/test/html_table_output.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -49,7 +49,7 @@
 BOOST_AUTO_TEST_CASE_TEMPLATE( vector_in_c_array_html_stream_test, C, test_types )
 {
     using namespace boost::explore;
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
     str_out << html_table_stream_format;
 
     std::vector<int> vi;

Modified: sandbox/explore/libs/explore/test/multi_dim_test.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/multi_dim_test.cpp (original)
+++ sandbox/explore/libs/explore/test/multi_dim_test.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -41,7 +41,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( two_dimension_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::vector<int> vi;
     std::vector<std::vector<int> > vvi;
@@ -95,7 +95,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( three_dimension_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::vector<int> vi;
     std::vector<std::vector<int> > vvi;

Modified: sandbox/explore/libs/explore/test/simple_types.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/simple_types.cpp (original)
+++ sandbox/explore/libs/explore/test/simple_types.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -16,7 +16,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( int_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
     int i = 123;
 
     str_out << i;
@@ -35,7 +35,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( float_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
     float f = 1.234f;
 
     str_out << std::setprecision(4) << f;
@@ -47,7 +47,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( double_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
     double d = 1.2341234f;
 
     str_out << std::setprecision(7) << d;
@@ -59,7 +59,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( bool_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
     bool b = true;
 
     str_out << std::boolalpha << b;
@@ -74,7 +74,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( char_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
     char c = 'c';
 
     str_out << c;

Modified: sandbox/explore/libs/explore/test/std_deque.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/std_deque.cpp (original)
+++ sandbox/explore/libs/explore/test/std_deque.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -15,7 +15,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_deque_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::deque<int> di;
     str_out << di;
@@ -42,7 +42,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( deque_in_deque_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::deque<int> di;
     di.push_back(1);

Modified: sandbox/explore/libs/explore/test/std_list.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/std_list.cpp (original)
+++ sandbox/explore/libs/explore/test/std_list.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -16,7 +16,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_list_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::list<std::complex<double> > lc;
     str_out << lc;
@@ -43,7 +43,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( list_in_list_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::list<int> li;
     li.push_back(1);
@@ -71,4 +71,4 @@
 
     str_out << boost::explore::make_iterator_range(lli.begin(), ++(++lli.begin()));
     BOOST_CHECK_EQUAL(output(str_out), "[[1, 2, 3], [1, 2, 3]]");
-}
+}
\ No newline at end of file

Modified: sandbox/explore/libs/explore/test/std_map.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/std_map.cpp (original)
+++ sandbox/explore/libs/explore/test/std_map.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -17,9 +17,9 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_map_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
- std::map<int, test_traits<C>::string_type> mis;
+ std::map<int, typename test_traits<C>::string_type> mis;
     str_out << mis;
     BOOST_CHECK_EQUAL(output(str_out), "[]");
 
@@ -44,9 +44,9 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_multimap_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
- std::multimap<int, test_traits<C>::string_type> mmis;
+ std::multimap<int, typename test_traits<C>::string_type> mmis;
     str_out << mmis;;
     BOOST_CHECK_EQUAL(output(str_out), "[]");
 
@@ -78,7 +78,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( vector_in_map_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::vector<int> vi;
     vi.push_back(1);

Modified: sandbox/explore/libs/explore/test/std_pair.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/std_pair.cpp (original)
+++ sandbox/explore/libs/explore/test/std_pair.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -16,7 +16,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_pair_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::pair<int,int> pi = std::make_pair(1,2);
     str_out << pi;
@@ -25,7 +25,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( pair_in_vector_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::vector<std::pair<int,int> > vpi;
     str_out << vpi;

Modified: sandbox/explore/libs/explore/test/std_set.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/std_set.cpp (original)
+++ sandbox/explore/libs/explore/test/std_set.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -18,7 +18,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_set_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::set<int> si;
     str_out << si;
@@ -45,7 +45,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_multiset_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::multiset<int> msi;
     str_out << msi;
@@ -79,7 +79,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( vector_in_set_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::vector<int> vi;
     vi.push_back(1);

Modified: sandbox/explore/libs/explore/test/std_vector.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/std_vector.cpp (original)
+++ sandbox/explore/libs/explore/test/std_vector.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -15,7 +15,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( basic_vector_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::vector<int> vi;
     str_out << vi;
@@ -42,7 +42,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( vector_in_vector_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     std::vector<int> vi;
     vi.push_back(1);

Modified: sandbox/explore/libs/explore/test/user_defined_container.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/user_defined_container.cpp (original)
+++ sandbox/explore/libs/explore/test/user_defined_container.cpp 2009-08-31 22:32:36 EDT (Mon, 31 Aug 2009)
@@ -49,7 +49,7 @@
 
 BOOST_AUTO_TEST_CASE_TEMPLATE( user_defined_stream_test, C, test_types )
 {
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     user_vector v;
     str_out << v;
@@ -88,7 +88,7 @@
 {
     using namespace boost::assign;
     using namespace boost::explore;
- test_traits<C>::stream_type str_out;
+ typename test_traits<C>::stream_type str_out;
 
     my_container mc;
     str_out << mc;


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