From 47a4b2a2c1b2477f39fa1d2e744de94b99bd803a Mon Sep 17 00:00:00 2001 From: Arkadiy Vertleyb Date: Wed, 7 Jun 2006 03:00:58 +0000 Subject: [PATCH] *** empty log message *** [SVN r34215] --- include/boost/typeof/msvc/typeof_impl.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/boost/typeof/msvc/typeof_impl.hpp b/include/boost/typeof/msvc/typeof_impl.hpp index 6b5a09b..3ce3544 100755 --- a/include/boost/typeof/msvc/typeof_impl.hpp +++ b/include/boost/typeof/msvc/typeof_impl.hpp @@ -153,7 +153,12 @@ namespace boost typedef char(*type)[encode_type::value]; }; -# if BOOST_WORKAROUND(BOOST_MSVC,>=1300) +# ifdef BOOST_NO_SFINAE + + template + typename sizer::type encode_start(T const&); + +# else template typename disable_if< typename is_function::type, @@ -163,11 +168,6 @@ namespace boost typename is_function::type, typename sizer::type>::type encode_start(T&); -# else - - template - typename sizer::type encode_start(T const&); - # endif } }