Ignore boost timer warnings in msvc.

This commit is contained in:
lotodore
2007-05-07 09:34:36 +00:00
parent a85ec4ee5a
commit d24a45f354
+9
View File
@@ -13,10 +13,19 @@
#pragma once
#endif
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 4244)
#endif
// -------------------------- Includes --------------------------
#include "boost/timer/implementation.hpp"
#include "boost/timer/devices.hpp"
#include "boost/timer/typedefs.hpp"
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#endif // BOOST_TIMER_HPP