From 8b37ed2072c5010ee13051e4be32ac3d74bc239c Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Sat, 5 May 2001 20:26:38 +0000 Subject: [PATCH] add HP aCC workarounds [SVN r10025] --- include/boost/static_assert.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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{}; }