From 60ae05a2506fa9af32d8c4e7516927d4e080808e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Fri, 5 Sep 2003 18:24:24 +0000 Subject: [PATCH] typo [SVN r1505] --- test/enable_if_dummy_arg_disambiguation.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/enable_if_dummy_arg_disambiguation.cpp b/test/enable_if_dummy_arg_disambiguation.cpp index 8735b42..3e14426 100644 --- a/test/enable_if_dummy_arg_disambiguation.cpp +++ b/test/enable_if_dummy_arg_disambiguation.cpp @@ -15,6 +15,7 @@ #include using boost::enable_if; +using boost::disable_if; using boost::is_arithmetic; template struct dummy { @@ -26,7 +27,7 @@ typename enable_if, bool>::type arithmetic_object(T t, dummy<0> = 0) { return true; } template -typename enable_if, bool>::type +typename disable_if, bool>::type arithmetic_object(T t, dummy<1> = 0) { return false; }