diff --git a/include/boost/static_assert.hpp b/include/boost/static_assert.hpp index 3c8ceb1..ec1995d 100644 --- a/include/boost/static_assert.hpp +++ b/include/boost/static_assert.hpp @@ -25,11 +25,13 @@ namespace boost{ -template struct STATIC_ASSERTION_FAILURE; +// HP aCC cannot deal with missing names for template value parameters +template struct STATIC_ASSERTION_FAILURE; template <> struct STATIC_ASSERTION_FAILURE{}; -template struct static_assert_test{}; +// HP aCC cannot deal with missing names for template value parameters +template struct static_assert_test{}; }