|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r60891 - in sandbox/statistics/detail/assign: boost/assign/auto_size/range libs/assign/doc libs/assign/src
From: erwann.rogard_at_[hidden]
Date: 2010-03-28 11:14:08
Author: e_r
Date: 2010-03-28 11:14:07 EDT (Sun, 28 Mar 2010)
New Revision: 60891
URL: http://svn.boost.org/trac/boost/changeset/60891
Log:
m
Text files modified:
sandbox/statistics/detail/assign/boost/assign/auto_size/range/iterator_converter.hpp | 2 -
sandbox/statistics/detail/assign/libs/assign/doc/compilers_tested.txt | 4 +-
sandbox/statistics/detail/assign/libs/assign/src/main.cpp | 72 +++++++++++++++++++++++++++++++++++++--
3 files changed, 69 insertions(+), 9 deletions(-)
Modified: sandbox/statistics/detail/assign/boost/assign/auto_size/range/iterator_converter.hpp
==============================================================================
--- sandbox/statistics/detail/assign/boost/assign/auto_size/range/iterator_converter.hpp (original)
+++ sandbox/statistics/detail/assign/boost/assign/auto_size/range/iterator_converter.hpp 2010-03-28 11:14:07 EDT (Sun, 28 Mar 2010)
@@ -65,8 +65,6 @@
};
} //detail
-struct use_default;
-
template<typename V,typename R,typename I>
detail::converted_iterator<I,V,R>
convert_iterator(
Modified: sandbox/statistics/detail/assign/libs/assign/doc/compilers_tested.txt
==============================================================================
--- sandbox/statistics/detail/assign/libs/assign/doc/compilers_tested.txt (original)
+++ sandbox/statistics/detail/assign/libs/assign/doc/compilers_tested.txt 2010-03-28 11:14:07 EDT (Sun, 28 Mar 2010)
@@ -2,10 +2,10 @@
Mac OS X 10.6 gcc 4.2 boost_1_41_0 March 25th, 2010 15/15 15/15 warning: comparison between signed and unsigned integer expressions
Ubuntu 9.10 gcc 4.4 boost_1_41_0 March 25th, 2010 15/15 15/15 warning: comparison between signed and unsigned integer expressions
Win7-32 V6.1.7100 Mingw/GCC 3.4.2 boost_1_41_0 March 25th, 2010 15/15 10/15 Reference wrappers seem to contain garbage.
-Win7-32 V6.1.7100 MSVC 2008 Version - Express edition boost_1_41_0 March 28th, 2010 12/15 12/12
+Win7-32 V6.1.7100 MSVC 2008 Version - Express edition boost_1_41_0 March 28th, 2010 15/15 15/15
-Check revision_history.txt to verify that these tests are up to date.
See patch.txt for requirements.
+Check revision_history.txt to verify that these tests are up to date.
March 25th/OSX:
/trunk/libs/assign/test$ sudo bjam toolset=darwin debug
Modified: sandbox/statistics/detail/assign/libs/assign/src/main.cpp
==============================================================================
--- sandbox/statistics/detail/assign/libs/assign/src/main.cpp (original)
+++ sandbox/statistics/detail/assign/libs/assign/src/main.cpp 2010-03-28 11:14:07 EDT (Sun, 28 Mar 2010)
@@ -1,12 +1,14 @@
#include <iostream>
#define BOOST_ASSIGN_CHECK_EQUAL(a,b) BOOST_ASSERT(a==b)
#include <boost/assign/auto_size/check/ref_list_of.hpp>
-//#include <boost/assign/auto_size/check/ref_csv.hpp>
+#include <boost/assign/auto_size/check/ref_csv.hpp>
#undef BOOST_ASSIGN_CHECK_EQUAL
#include <libs/assign/example/range.h>
int main (int argc, char * const argv[]) {
+ example_range(std::cout);
+
using namespace boost::assign::detail::auto_size;
void (*fp)();
@@ -63,7 +65,6 @@
fp = check_ref_list_of_chain_r<int>;
(*fp)();
}
-/*
{ // 14
fp = check_ref_list_of_chain_l<int>;
(*fp)();
@@ -72,9 +73,70 @@
fp = check_ref_list_of_example2<int>;
(*fp)();
}
-*/ std::cout << "check_ref_list_of : ok" << std::endl;
-
- example_range(std::cout);
+ std::cout << "check_ref_list_of : ok" << std::endl;
+/*
+ { // 1
+ fp = check_ref_csv_example1<int>;
+ (*fp)();
+ }
+ { // 2
+ fp = check_ref_csv_iterator<int>;
+ (*fp)();
+ }
+ { // 3
+ fp = check_ref_csv_array<int>;
+ (*fp)();
+ }
+ { // 4
+ fp = check_ref_csv_copy_iterator<int>;
+ (*fp)();
+ }
+ { // 5
+ fp = check_ref_csv_copy_array<int>;
+ (*fp)();
+ }
+ { // 6
+ fp = check_ref_csv_rebind_array<int>;
+ (*fp)();
+ }
+ { // 7
+ fp = check_ref_csv_converter_list<int>;
+ (*fp)();
+ }
+ { // 8
+ fp = check_ref_csv_converter_vector<int>;
+ (*fp)();
+ }
+ { // 9
+ fp = check_ref_csv_converter_array<int>;
+ (*fp)();
+ }
+ { // 10
+ fp = check_ref_csv_converter_set<int>;
+ (*fp)();
+ }
+ { // 11
+ fp = check_ref_csv_adapter_stack<int>;
+ (*fp)();
+ }
+ { // 12
+ fp = check_ref_csv_adapter_queue<int>;
+ (*fp)();
+ }
+ { // 13
+ fp = check_ref_csv_chain_r<int>;
+ (*fp)();
+ }
+ { // 14
+ fp = check_ref_csv_chain_l<int>;
+ (*fp)();
+ }
+ { // 15
+ fp = check_ref_csv_example2<int>;
+ (*fp)();
+ }
+ std::cout << "check_ref_csv : ok" << std::endl;
+*/
return 0;
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