From 2cc2141906aeff0772d623232fc94ff2dcff8625 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sun, 13 Oct 2013 08:15:49 +0000 Subject: [PATCH] Fix workaround ifdef. [SVN r86280] --- include/boost/function_types/detail/cv_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/function_types/detail/cv_traits.hpp b/include/boost/function_types/detail/cv_traits.hpp index 75a7d80..4e15fa4 100644 --- a/include/boost/function_types/detail/cv_traits.hpp +++ b/include/boost/function_types/detail/cv_traits.hpp @@ -22,7 +22,7 @@ namespace boost { namespace function_types { namespace detail { -#if BOOST_WORKAROUND(__BORLANDC__, <= 0x582)) +#if !BOOST_WORKAROUND(__BORLANDC__, <= 0x582) template struct cv_traits { typedef non_cv tag; typedef T type; };