Merge branch 'Belcourt-develop' into develop

This commit is contained in:
Peter Dimov
2017-05-27 03:02:32 +03:00

View File

@ -17,6 +17,7 @@
// http://www.boost.org/LICENSE_1_0.txt) // http://www.boost.org/LICENSE_1_0.txt)
// //
#include <boost/config.hpp>
#include <exception> #include <exception>
#ifdef __BORLANDC__ #ifdef __BORLANDC__
@ -36,7 +37,8 @@ namespace boost
# pragma option push -pc # pragma option push -pc
#endif #endif
#if defined(__clang__) #if defined(BOOST_CLANG)
// Intel C++ on Mac defines __clang__ but doesn't support the pragma
# pragma clang diagnostic push # pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wweak-vtables" # pragma clang diagnostic ignored "-Wweak-vtables"
#endif #endif
@ -51,7 +53,7 @@ public:
} }
}; };
#if defined(__clang__) #if defined(BOOST_CLANG)
# pragma clang diagnostic pop # pragma clang diagnostic pop
#endif #endif