Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r53961 - in sandbox/monotonic: boost/monotonic libs/monotonic/test
From: christian.schladetsch_at_[hidden]
Date: 2009-06-15 23:13:53


Author: cschladetsch
Date: 2009-06-15 23:13:52 EDT (Mon, 15 Jun 2009)
New Revision: 53961
URL: http://svn.boost.org/trac/boost/changeset/53961

Log:
added reference to <utility> and <limits> to storage.h
Text files modified:
   sandbox/monotonic/boost/monotonic/storage.h | 9 +++++----
   sandbox/monotonic/libs/monotonic/test/monotonic.vcproj | 4 ----
   2 files changed, 5 insertions(+), 8 deletions(-)

Modified: sandbox/monotonic/boost/monotonic/storage.h
==============================================================================
--- sandbox/monotonic/boost/monotonic/storage.h (original)
+++ sandbox/monotonic/boost/monotonic/storage.h 2009-06-15 23:13:52 EDT (Mon, 15 Jun 2009)
@@ -5,9 +5,10 @@
 
 #pragma once
 
+#include <utility>
+#include <limits>
 #include <boost/monotonic/fixed_storage.h>
 #include <boost/foreach.hpp>
-#include <utility>
 
 namespace boost
 {
@@ -76,9 +77,9 @@
                         typedef std::vector<Link, Al> Chain;
 
                 private:
- fixed_storage<InlineSize> fixed; // the inline fixed_storage
- Chain chain; // heap-based fixed_storage
- Allocator alloc; // allocator for heap-based fixed_storage
+ fixed_storage<InlineSize> fixed; // the inline fixed-sized storage which may be on the stack
+ Chain chain; // heap-based storage
+ Allocator alloc; // allocator for heap-based storage
 
                 public:
                         storage()

Modified: sandbox/monotonic/libs/monotonic/test/monotonic.vcproj
==============================================================================
--- sandbox/monotonic/libs/monotonic/test/monotonic.vcproj (original)
+++ sandbox/monotonic/libs/monotonic/test/monotonic.vcproj 2009-06-15 23:13:52 EDT (Mon, 15 Jun 2009)
@@ -182,10 +182,6 @@
>
                                 </File>
                                 <File
- RelativePath="..\..\..\boost\monotonic\chained_storage.h"
- >
- </File>
- <File
                                         RelativePath="..\..\..\boost\monotonic\inline_clone_allocator.h"
>
                                 </File>


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