$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r53951 - sandbox/monotonic/libs/monotonic/test
From: christian.schladetsch_at_[hidden]
Date: 2009-06-15 20:41:29
Author: cschladetsch
Date: 2009-06-15 20:41:28 EDT (Mon, 15 Jun 2009)
New Revision: 53951
URL: http://svn.boost.org/trac/boost/changeset/53951
Log:
added
Added:
sandbox/monotonic/libs/monotonic/test/test_chained.cpp (contents, props changed)
Added: sandbox/monotonic/libs/monotonic/test/test_chained.cpp
==============================================================================
--- (empty file)
+++ sandbox/monotonic/libs/monotonic/test/test_chained.cpp 2009-06-15 20:41:28 EDT (Mon, 15 Jun 2009)
@@ -0,0 +1,9 @@
+#include <boost/monotonic/changed_storage.h>
+
+void test_chained_storage()
+{
+ monotonic::chained_storage<10> store;
+ void *p = store.allocate(20);
+}
+
+//EOF