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]
This commit is contained in:
Dave Abrahams
2000-11-04 09:00:02 +00:00
parent d08d2cb415
commit 02436dd1c6

View File

@@ -156,7 +156,9 @@ namespace boost
// Move to namespace boost in utility.hpp?
template <class T>
struct fixed_numeric_limits
: public numeric_min_select<std::numeric_limits<T>::is_signed>::limits<T>
: public numeric_min_select<
std::numeric_limits<T>::is_signed
>::template limits<T>
{
};
}