diff --git a/include/boost/detail/select_type.hpp b/include/boost/detail/select_type.hpp index 2a95a98..3d15a97 100644 --- a/include/boost/detail/select_type.hpp +++ b/include/boost/detail/select_type.hpp @@ -19,7 +19,9 @@ namespace boost { namespace detail { // Template class if_true -- select among 2 types based on a bool constant expression // Usage: // typename if_true<(bool_const_expression)>::template then::type - template struct if_true + + // HP aCC cannot deal with missing names for template value parameters + template struct if_true { template struct then { typedef T type; };