diff --git a/include/boost/type_traits/integral_constant.hpp b/include/boost/type_traits/integral_constant.hpp index b8e6250..0a160b5 100644 --- a/include/boost/type_traits/integral_constant.hpp +++ b/include/boost/type_traits/integral_constant.hpp @@ -64,6 +64,9 @@ namespace boost{ BOOST_CONSTEXPR operator T() { return val; } }; + template + T const integral_constant::value; + template struct integral_constant { @@ -79,6 +82,9 @@ namespace boost{ BOOST_CONSTEXPR operator bool() { return val; } }; + template + bool const integral_constant::value; + typedef integral_constant true_type; typedef integral_constant false_type;