From 482a6f941977dc96982fb2e183c420c631a79888 Mon Sep 17 00:00:00 2001 From: Joel Falcou Date: Tue, 18 Aug 2015 08:59:05 +0200 Subject: [PATCH] Fix test for enable_if_has_type --- test/eif_partial_specializations.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/eif_partial_specializations.cpp b/test/eif_partial_specializations.cpp index a7820cc..c323494 100644 --- a/test/eif_partial_specializations.cpp +++ b/test/eif_partial_specializations.cpp @@ -48,14 +48,14 @@ struct tester2 >::type> { }; template -class tester3 +struct tester3 { typedef T type; BOOST_STATIC_CONSTANT(bool, value = false); }; template -class tester3::type> +struct tester3::type> { typedef typename T::value_type type; BOOST_STATIC_CONSTANT(bool, value = true);