Version 4.0.2.1, tag libreoffice-4.0.2.1
[LibreOffice.git] / boost / boost.vc2012.patch
blobac206997dbbb5151c7d6ef41e37c70fe94150162
1 --- misc/build/boost_1_44_0/boost/config/compiler/visualc.hpp
2 +++ misc/build/boost_1_44_0/boost/config/compiler/visualc.hpp
3 @@ -101,6 +101,11 @@
4 # define BOOST_NO_ADL_BARRIER
5 #endif
7 +#if _MSC_VER >= 1700 // 1700 == VC++ 11.0
8 + // Removed in VC11:
9 +# define BOOST_NO_0X_HDR_INITIALIZER_LIST
10 +#endif
13 #if (_MSC_VER <= 1600)
14 // MSVC (including the latest checked version) has not yet completely
15 @@ -269,8 +269,8 @@
16 #error "Compiler not supported or configured - please reconfigure"
17 #endif
19 -// last known and checked version is 1600 (VC10, aka 2010):
20 -#if (_MSC_VER > 1600)
21 +// last known and checked version is 1700 (VC12, aka 2012):
22 +#if (_MSC_VER > 1700)
23 # if defined(BOOST_ASSERT_CONFIG)
24 # error "Unknown compiler version - please run the configure tests and report the results"
25 # else