From 4e34737b9ce15bcf62794c8273ac67b12ccb1b43 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Thu, 26 Sep 2013 06:52:33 +0000 Subject: [PATCH] TypeOf: Fix if/elif chain after msvc 6/7 removal. [SVN r85925] --- include/boost/typeof/typeof.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/typeof/typeof.hpp b/include/boost/typeof/typeof.hpp index 89abdb4..9c40b7a 100644 --- a/include/boost/typeof/typeof.hpp +++ b/include/boost/typeof/typeof.hpp @@ -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