From 62e8cc2b36b4afa05c9aa53a6b5fffe7d8e3063b Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Sun, 4 Dec 2005 18:47:02 +0000 Subject: [PATCH] Attempted portability fix for Sun compilers [SVN r31904] --- enable_if/test/lazy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;}