From 325f2a121cb6af7f2269244f684e92ac411ecc56 Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Mon, 15 Mar 2010 21:14:55 +0000 Subject: [PATCH] Add definition of BOOST_MSVC_FULL_VER_WORKAROUND_GUARD. Fixes #4012 [SVN r60624] --- include/boost/detail/workaround.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/boost/detail/workaround.hpp b/include/boost/detail/workaround.hpp index b6b64125..40b3423b 100644 --- a/include/boost/detail/workaround.hpp +++ b/include/boost/detail/workaround.hpp @@ -65,6 +65,11 @@ #else #define BOOST_MSVC_WORKAROUND_GUARD 0 #endif +#ifndef BOOST_MSVC_FULL_VER +#define BOOST_MSVC_FULL_VER_WORKAROUND_GUARD 1 +#else +#define BOOST_MSVC_FULL_VER_WORKAROUND_GUARD 0 +#endif #ifndef __GNUC__ #define __GNUC___WORKAROUND_GUARD 1 #else