summaryrefslogtreecommitdiff
path: root/boost/fusion/support/is_segmented.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/fusion/support/is_segmented.hpp')
-rw-r--r--boost/fusion/support/is_segmented.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/boost/fusion/support/is_segmented.hpp b/boost/fusion/support/is_segmented.hpp
index ba571dc537..6e62eac430 100644
--- a/boost/fusion/support/is_segmented.hpp
+++ b/boost/fusion/support/is_segmented.hpp
@@ -7,6 +7,7 @@
#if !defined(FUSION_IS_SEGMENTED_03202006_0015)
#define FUSION_IS_SEGMENTED_03202006_0015
+#include <boost/mpl/bool.hpp>
#include <boost/fusion/support/tag_of.hpp>
namespace boost { namespace fusion
@@ -41,8 +42,10 @@ namespace boost { namespace fusion
{
template <typename Sequence>
struct is_segmented
- : extension::is_segmented_impl<typename traits::tag_of<Sequence>::type>::
- template apply<Sequence>
+ : mpl::bool_<
+ (bool)extension::is_segmented_impl<typename traits::tag_of<Sequence>::type>::
+ template apply<Sequence>::type::value
+ >
{
};
}