more warnings

This commit is contained in:
Gennadiy Civil 2018-04-06 11:40:04 -04:00
parent cb13dc759c
commit 5fe8de5ded

View File

@ -39,6 +39,14 @@
#include "gtest/gtest.h"
// Silence C4100 (unreferenced formal parameter) for MSVC
#ifdef _MSC_VER
# pragma warning(push)
# pragma warning(disable:4100)
#endif
using testing::_;
using testing::AnyNumber;
using testing::Ge;
@ -298,3 +306,7 @@ int main(int argc, char **argv) {
TestCatchesLeakedMocksInAdHocTests();
return RUN_ALL_TESTS();
}
#ifdef _MSC_VER
# pragma warning(pop)
#endif