Disable MSVC warning C4702 (unreachable code) in Boost headers.
parent
90ba675da4
commit
33a42b32ca
|
|
@ -54,8 +54,16 @@
|
|||
#include <gtest/gtest.h>
|
||||
#endif
|
||||
|
||||
#if LL_MSVC
|
||||
#pragma warning (push)
|
||||
#pragma warning (disable : 4702) // warning C4702: unreachable code
|
||||
#endif
|
||||
#include <boost/iostreams/tee.hpp>
|
||||
#include <boost/iostreams/stream.hpp>
|
||||
#if LL_MSVC
|
||||
#pragma warning (pop)
|
||||
#endif
|
||||
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <boost/make_shared.hpp>
|
||||
#include <boost/foreach.hpp>
|
||||
|
|
|
|||
Loading…
Reference in New Issue