merge from trunk

[SVN r56179]
This commit is contained in:
Joel de Guzman
2009-09-14 07:47:53 +00:00
parent 2f8b91828b
commit 2e805be6df
281 changed files with 9335 additions and 11649 deletions

View File

@ -33,10 +33,10 @@ main()
using namespace std;
{
vector0 vec;
vector0<> vec;
(void) vec;
cout << "(): " << sizeof(vec) << endl;
cout << (boost::is_empty<vector0>::value ? "is empty" : "is not empty") << endl;
cout << (boost::is_empty<vector0<> >::value ? "is empty" : "is not empty") << endl;
}
{
@ -207,7 +207,7 @@ main()
{
// testing copy and assign from a view
vector0 empty;
vector0<> empty;
fusion::vector2<int, long> v(fusion::push_back(fusion::push_back(empty, 123), 456));
BOOST_TEST(at_c<0>(v) == 123);
BOOST_TEST(at_c<1>(v) == 456);