Correct preprocessor condition to match below

This commit is contained in:
Ed Catmur
2017-02-16 16:30:52 +00:00
committed by GitHub
parent 8c582362d0
commit f2616bcd17

View File

@ -40,7 +40,7 @@
#include <boost/mpl/if.hpp>
#include <boost/mpl/or.hpp>
#if !(_MSC_VER > 1600 || (__GNUC__ == 4 && __GNUC_MINOR__ > 5 && defined(__GXX_EXPERIMENTAL_CXX0X__)))
#if !((defined(_MSC_VER) && _MSC_VER > 1600) || (__GNUC__ == 4 && __GNUC_MINOR__ > 5 && defined(__GXX_EXPERIMENTAL_CXX0X__)))
# include <boost/functional/hash/hash.hpp>
#endif