Kaydet (Commit) 6fbf6653 authored tarafından Andre Fischer's avatar Andre Fischer

124361: Avoid MSVC warning 4555 while including unordered_map.

üst aa46680d
......@@ -28,7 +28,10 @@
#elif defined(__cplusplus) && (__cplusplus >= 201103L)
#include <unordered_map>
#elif defined(_MSC_VER)
#pragma warning(push)
#pragma warning(disable:4555)
#include <../../VC/include/unordered_map>
#pragma warning(pop)
#define STLP4_EMUBASE_NS ::std::tr1
#else // fall back to boost/tr1
#include <boost/tr1/tr1/unordered_map>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment