enable warning level for for tests (msvc) and cleanup some warnings.

This commit is contained in:
greg
2020-01-01 13:56:35 -05:00
parent e4dc9c59a8
commit 9191e51500
11 changed files with 94 additions and 45 deletions
+8
View File
@@ -19,11 +19,19 @@
#include <vector>
#include <unordered_map>
#ifdef _MSC_VER
#pragma warning(push, 0)
#endif
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "hash_generator_testing.h"
#include "hash_policy_testing.h"
#ifdef _MSC_VER
#pragma warning(pop)
#endif
namespace phmap {
namespace container_internal {