summaryrefslogtreecommitdiffstats
path: root/googletest/include/gtest
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-04-10 20:22:50 (GMT)
committerGennadiy Civil <misterg@google.com>2018-04-10 20:22:50 (GMT)
commit9bc82ce7251b01ac3abfb28efc9793b56fa835d6 (patch)
treed98e7086c5178f838d473f7fe5028ad4911f5f87 /googletest/include/gtest
parent25d8176e4fc8988367fbe3ce1a8ca0b92b79bbfa (diff)
downloadgoogletest-9bc82ce7251b01ac3abfb28efc9793b56fa835d6.zip
googletest-9bc82ce7251b01ac3abfb28efc9793b56fa835d6.tar.gz
googletest-9bc82ce7251b01ac3abfb28efc9793b56fa835d6.tar.bz2
merging
Diffstat (limited to 'googletest/include/gtest')
-rw-r--r--googletest/include/gtest/gtest.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/googletest/include/gtest/gtest.h b/googletest/include/gtest/gtest.h
index cbab121..a0592a8 100644
--- a/googletest/include/gtest/gtest.h
+++ b/googletest/include/gtest/gtest.h
@@ -82,11 +82,12 @@
namespace testing {
-// Silence C4100 (unreferenced formal parameter) for MSVC
+// Silence C4100 (unreferenced formal parameter) and 4805
+// unsafe mix of type 'const int' and type 'const bool'
#ifdef _MSC_VER
# pragma warning(push)
-# pragma warning(disable:4100)
# pragma warning(disable:4805)
+# pragma warning(disable:4100)
#endif
@@ -2307,7 +2308,7 @@ bool StaticAssertTypeEq() {
GTEST_API_ std::string TempDir();
#ifdef _MSC_VER
-# pragma warning(pop)
+# pragma warning(pop)
#endif
} // namespace testing