mirror of
https://github.com/boostorg/conversion.git
synced 2025-08-02 22:14:28 +02:00
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:
@@ -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>
|
||||
{
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user