Attempted portability fix for Sun compilers

[SVN r31904]
This commit is contained in:
Jeremiah Willcock 2005-12-04 18:47:02 +00:00
parent 30236f8915
commit 62e8cc2b36

View File

@ -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;}