$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r54486 - sandbox/monotonic/libs/monotonic/test/clones
From: christian.schladetsch_at_[hidden]
Date: 2009-06-28 19:08:56
Author: cschladetsch
Date: 2009-06-28 19:08:56 EDT (Sun, 28 Jun 2009)
New Revision: 54486
URL: http://svn.boost.org/trac/boost/changeset/54486
Log:
disabled any<alloc> for GCC
Text files modified:
sandbox/monotonic/libs/monotonic/test/clones/tests.cpp | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
Modified: sandbox/monotonic/libs/monotonic/test/clones/tests.cpp
==============================================================================
--- sandbox/monotonic/libs/monotonic/test/clones/tests.cpp (original)
+++ sandbox/monotonic/libs/monotonic/test/clones/tests.cpp 2009-06-28 19:08:56 EDT (Sun, 28 Jun 2009)
@@ -10,7 +10,7 @@
#include <iostream>
#include <boost/heterogenous/vector.hpp>
#include <boost/bind.hpp>
-#include <boost/any.hpp>
+//#include <boost/any.hpp>
using namespace std;
using namespace boost;
@@ -123,6 +123,7 @@
void test_any()
{
+/*
typedef std::vector<any<monotonic::allocator<char> >, monotonic::allocator<any<monotonic::allocator<char> > > > vec;
vec v;
v.push_back(derived(42));
@@ -134,6 +135,7 @@
cout << "storage.used: " << monotonic::static_storage<>::used() << endl;
BOOST_ASSERT(any_cast<derived2 &>(v2[1]).str == "foo");
+*/
}
//EOF