mirror of
https://github.com/boostorg/utility.git
synced 2025-05-09 15:04:00 +00:00
Attempted portability fix for Sun compilers
[SVN r31904]
This commit is contained in:
parent
30236f8915
commit
62e8cc2b36
@ -61,7 +61,7 @@ mult(const T& x, const U& y) {return x * y;}
|
|||||||
#if 1
|
#if 1
|
||||||
template <class T, class U>
|
template <class T, class U>
|
||||||
typename lazy_enable_if_c<
|
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>
|
mult_traits<T, U>
|
||||||
>::type
|
>::type
|
||||||
mult(const T& x, const U& y) {return x * y;}
|
mult(const T& x, const U& y) {return x * y;}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user