Disable some embedded win32 warnings.

[SVN r71394]
This commit is contained in:
John Maddock
2011-04-20 16:22:29 +00:00
parent 7fdc037def
commit 8375014c95

View File

@ -7,6 +7,12 @@
#ifndef TT_TEST_HPP
#define TT_TEST_HPP
#include <boost/config.hpp>
#if defined(_WIN32_WCE) && defined(BOOST_MSVC)
#pragma warning(disable:4201)
#endif
#ifdef USE_UNIT_TEST
# include <boost/test/unit_test.hpp>
#endif