Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r85925 - trunk/boost/typeof
From: steveire_at_[hidden]
Date: 2013-09-26 02:52:34


Author: skelly
Date: 2013-09-26 02:52:33 EDT (Thu, 26 Sep 2013)
New Revision: 85925
URL: http://svn.boost.org/trac/boost/changeset/85925

Log:
TypeOf: Fix if/elif chain after msvc 6/7 removal.

Text files modified:
   trunk/boost/typeof/typeof.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/typeof/typeof.hpp
==============================================================================
--- trunk/boost/typeof/typeof.hpp Wed Sep 25 20:16:19 2013 (r85924)
+++ trunk/boost/typeof/typeof.hpp 2013-09-26 02:52:33 EDT (Thu, 26 Sep 2013) (r85925)
@@ -100,7 +100,7 @@
 # define MSVC_TYPEOF_HACK
 # endif
 #elif defined(_MSC_VER)
-# elif (_MSC_VER >= 1310) // 7.1 ->
+# if (_MSC_VER >= 1310) // 7.1 ->
 # ifndef BOOST_TYPEOF_EMULATION
 # ifndef BOOST_TYPEOF_NATIVE
 # ifndef _MSC_EXTENSIONS


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk