mute MSVC warnings in a boost header
This commit is contained in:
parent
d6ddcb78a3
commit
6983cfb53e
1 changed files with 8 additions and 0 deletions
|
@ -51,7 +51,14 @@
|
|||
#include <boost/foreach.hpp> // for auto_any_base, etc
|
||||
#include <boost/intrusive_ptr.hpp> // for intrusive_ptr
|
||||
#include <boost/function_output_iterator.hpp>
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning (push)
|
||||
#pragma warning (disable: 4510 4610)
|
||||
#endif
|
||||
#include <boost/range/algorithm.hpp>
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning (pop)
|
||||
#endif
|
||||
#include <cassert> // for assert
|
||||
#include <cstdlib> // for NULL, rand
|
||||
#include <exception> // for exception
|
||||
|
@ -60,6 +67,7 @@
|
|||
#include <ostream> // for operator<<, basic_ostream, etc
|
||||
#include "SDL_video.h" // for SDL_Color
|
||||
|
||||
|
||||
namespace t_translation { struct t_terrain; }
|
||||
|
||||
static lg::log_domain log_unit("unit");
|
||||
|
|
Loading…
Add table
Reference in a new issue