mirror of
https://github.com/boostorg/utility.git
synced 2025-07-29 20:37:32 +02:00
Attempted portability fix for Sun compilers
[SVN r31904]
This commit is contained in:
@ -61,7 +61,7 @@ mult(const T& x, const U& y) {return x * y;}
|
||||
#if 1
|
||||
template <class T, class U>
|
||||
typename lazy_enable_if_c<
|
||||
is_int<T>::value && is_int<U>::value,
|
||||
is_int<T>::value & is_int<U>::value,
|
||||
mult_traits<T, U>
|
||||
>::type
|
||||
mult(const T& x, const U& y) {return x * y;}
|
||||
|
Reference in New Issue
Block a user