Disable MSVC warning C4702 (unreachable code) in Boost headers.

master
Nat Goodspeed 2012-02-07 13:06:38 -05:00
parent 90ba675da4
commit 33a42b32ca
1 changed files with 8 additions and 0 deletions

View File

@ -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>