$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r85891 - trunk/boost/mpl
From: steveire_at_[hidden]
Date: 2013-09-25 06:27:56
Author: skelly
Date: 2013-09-25 06:27:56 EDT (Wed, 25 Sep 2013)
New Revision: 85891
URL: http://svn.boost.org/trac/boost/changeset/85891
Log:
MPL: Remove MSVC workaround for void templates.
Text files modified: 
   trunk/boost/mpl/void.hpp |    12 ------------                            
   1 files changed, 0 insertions(+), 12 deletions(-)
Modified: trunk/boost/mpl/void.hpp
==============================================================================
--- trunk/boost/mpl/void.hpp	Wed Sep 25 06:26:59 2013	(r85890)
+++ trunk/boost/mpl/void.hpp	2013-09-25 06:27:56 EDT (Wed, 25 Sep 2013)	(r85891)
@@ -36,36 +36,24 @@
 struct is_void_
     : false_
 {
-#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
-    using false_::value;
-#endif
 };
 
 template<>
 struct is_void_<void_>
     : true_
 {
-#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
-    using true_::value;
-#endif
 };
 
 template< typename T >
 struct is_not_void_
     : true_
 {
-#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
-    using true_::value;
-#endif
 };
 
 template<>
 struct is_not_void_<void_>
     : false_
 {
-#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
-    using false_::value;
-#endif
 };
 
 BOOST_MPL_AUX_NA_SPEC(1, is_void_)