Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r82859 - in sandbox/type_erasure/boost/type_erasure: . detail
From: steven_at_[hidden]
Date: 2013-02-13 13:10:46


Author: steven_watanabe
Date: 2013-02-13 13:10:45 EST (Wed, 13 Feb 2013)
New Revision: 82859
URL: http://svn.boost.org/trac/boost/changeset/82859

Log:
Fix missing #include.
Text files modified:
   sandbox/type_erasure/boost/type_erasure/detail/const.hpp | 2 ++
   sandbox/type_erasure/boost/type_erasure/param.hpp | 6 ++++++
   2 files changed, 8 insertions(+), 0 deletions(-)

Modified: sandbox/type_erasure/boost/type_erasure/detail/const.hpp
==============================================================================
--- sandbox/type_erasure/boost/type_erasure/detail/const.hpp (original)
+++ sandbox/type_erasure/boost/type_erasure/detail/const.hpp 2013-02-13 13:10:45 EST (Wed, 13 Feb 2013)
@@ -14,9 +14,11 @@
 #include <boost/mpl/if.hpp>
 #include <boost/mpl/bool.hpp>
 #include <boost/mpl/or.hpp>
+#include <boost/mpl/and.hpp>
 #include <boost/mpl/not.hpp>
 #include <boost/type_traits/is_same.hpp>
 #include <boost/type_traits/is_const.hpp>
+#include <boost/type_traits/is_reference.hpp>
 #include <boost/type_traits/remove_reference.hpp>
 #include <boost/type_traits/remove_cv.hpp>
 #include <boost/type_erasure/placeholder_of.hpp>

Modified: sandbox/type_erasure/boost/type_erasure/param.hpp
==============================================================================
--- sandbox/type_erasure/boost/type_erasure/param.hpp (original)
+++ sandbox/type_erasure/boost/type_erasure/param.hpp 2013-02-13 13:10:45 EST (Wed, 13 Feb 2013)
@@ -30,6 +30,12 @@
 
 namespace detail {
 
+struct access;
+
+}
+
+namespace detail {
+
 template<class From, class To>
 struct placeholder_conversion : boost::mpl::false_ {};
 template<class T>


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