diff --git a/enable_if/test/lazy.cpp b/enable_if/test/lazy.cpp index 6e7d650..d766fc9 100644 --- a/enable_if/test/lazy.cpp +++ b/enable_if/test/lazy.cpp @@ -61,7 +61,7 @@ mult(const T& x, const U& y) {return x * y;} #if 1 template typename lazy_enable_if_c< - is_int::value && is_int::value, + is_int::value & is_int::value, mult_traits >::type mult(const T& x, const U& y) {return x * y;}