From 1ee4d8ac0d9543cd97086d183fadd9e37c5510b0 Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Sat, 5 May 2001 19:57:09 +0000 Subject: [PATCH] add HP aCC workaround [SVN r10019] --- include/boost/detail/select_type.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; };