From 02436dd1c6b008d7efe18d59fb3b1a4ce71842e2 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sat, 4 Nov 2000 09:00:02 +0000 Subject: [PATCH] Added a fix for compilers sensitive to the presence of "template" on template members of templates (e.g. EDG-based compilers like CXX on the Alpha) [SVN r8129] --- include/boost/cast.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/boost/cast.hpp b/include/boost/cast.hpp index 35e5439..e1eb1bb 100644 --- a/include/boost/cast.hpp +++ b/include/boost/cast.hpp @@ -156,7 +156,9 @@ namespace boost // Move to namespace boost in utility.hpp? template struct fixed_numeric_limits - : public numeric_min_select::is_signed>::limits + : public numeric_min_select< + std::numeric_limits::is_signed + >::template limits { }; }