mirror of
https://github.com/boostorg/utility.git
synced 2025-05-08 18:34:02 +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
|
||||
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;}
|
||||
|
Loading…
x
Reference in New Issue
Block a user