From cda0894d0d4b6a17936cc4975bf828eb62803952 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 8 Oct 2001 11:30:53 +0000 Subject: [PATCH] Fix for sunpro 5.3 (array specialisations don't work) [SVN r11354] --- include/boost/detail/call_traits.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/detail/call_traits.hpp b/include/boost/detail/call_traits.hpp index ec161c6..ac198c2 100644 --- a/include/boost/detail/call_traits.hpp +++ b/include/boost/detail/call_traits.hpp @@ -109,7 +109,7 @@ struct call_traits typedef T& param_type; // hh removed const }; #endif - +#ifndef __SUNPRO_CC template struct call_traits { @@ -135,6 +135,7 @@ public: typedef const array_type& const_reference; typedef const T* const param_type; }; +#endif }