From 2c49d8d21b91d2d070f7d4791386ef803f02485b Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Sun, 26 Sep 2004 09:54:25 +0000 Subject: [PATCH] bool fix [SVN r25411] --- include/boost/mpl/bool.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/boost/mpl/bool.hpp b/include/boost/mpl/bool.hpp index 84fe692..6270be7 100644 --- a/include/boost/mpl/bool.hpp +++ b/include/boost/mpl/bool.hpp @@ -15,6 +15,7 @@ // $Revision$ #include +#include #include BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_OPEN @@ -22,6 +23,7 @@ BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_OPEN template< bool C_ > struct bool_ { BOOST_STATIC_CONSTANT(bool, value = C_); + typedef integral_c_tag tag; typedef bool_ type; typedef bool value_type; operator bool() const { return this->value; }