DRTVWR-494: Quiet VS warnings about its own <mutex> header.

master
Nat Goodspeed 2019-12-02 15:40:02 -05:00
parent 9d5b897600
commit 7915dc4562
1 changed files with 11 additions and 1 deletions

View File

@ -32,10 +32,20 @@
#include <set>
#include <vector>
#include <typeinfo>
#include <mutex>
#include <memory>
#include <type_traits>
#if LL_WINDOWS
#pragma warning (push)
#pragma warning (disable:4265)
#endif
// 'std::_Pad' : class has virtual functions, but destructor is not virtual
#include <mutex>
#if LL_WINDOWS
#pragma warning (pop)
#endif
#include <boost/iterator/transform_iterator.hpp>
#include <boost/iterator/indirect_iterator.hpp>
#include <boost/iterator/filter_iterator.hpp>