From 5005ea67dd2b39edc5f1aa806377adbfcf0f8489 Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Tue, 19 Jul 2005 04:03:12 +0000 Subject: [PATCH] fix integral_c [SVN r30173] --- include/boost/mpl/integral_c.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/boost/mpl/integral_c.hpp b/include/boost/mpl/integral_c.hpp index 6857a7f..d7abd12 100644 --- a/include/boost/mpl/integral_c.hpp +++ b/include/boost/mpl/integral_c.hpp @@ -40,7 +40,9 @@ template< bool C > struct integral_c { BOOST_STATIC_CONSTANT(bool, value = C); + typedef integral_c_tag tag; typedef integral_c type; + typedef bool value_type; operator bool() const { return this->value; } }; BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_CLOSE