Subject: [Boost-commit] svn:boost r67405 - branches/release/boost/icl
From: afojgo_at_[hidden]
Date: 2010-12-21 18:01:25


Author: jofaber
Date: 2010-12-21 18:01:22 EST (Tue, 21 Dec 2010)
New Revision: 67405
URL: http://svn.boost.org/trac/boost/changeset/67405

Log:
Adjustments for use with boost/intrusive

Properties modified:
   branches/release/boost/icl/ (props changed)
Text files modified:
   branches/release/boost/icl/map.hpp | 3 +++
   1 files changed, 3 insertions(+), 0 deletions(-)

Modified: branches/release/boost/icl/map.hpp
==============================================================================
--- branches/release/boost/icl/map.hpp (original)
+++ branches/release/boost/icl/map.hpp 2010-12-21 18:01:22 EST (Tue, 21 Dec 2010)
@@ -12,10 +12,13 @@
 
 #if defined(ICL_USE_BOOST_INTERPROCESS_IMPLEMENTATION)
 #include <boost/interprocess/containers/map.hpp>
+#include <boost/interprocess/containers/set.hpp>
 #elif defined(ICL_USE_BOOST_MOVE_IMPLEMENTATION)
 #include <boost/container/map.hpp>
+#include <boost/container/set.hpp>
 #else
 #include <map>
+#include <set>
 #endif
 
 #include <string>