summaryrefslogtreecommitdiffstats
path: root/googletest/src
diff options
context:
space:
mode:
authorLoo Rong Jie <loorongjie@gmail.com>2018-07-13 13:23:28 (GMT)
committerLoo Rong Jie <loorongjie@gmail.com>2018-07-13 13:23:28 (GMT)
commit3a8d744030e165dc7bebf70e4fbc44831059a79b (patch)
tree04b51c012803d2b7a22da62578a697ab09a2ca60 /googletest/src
parentb4d4438df9479675a632b2f11125e57133822ece (diff)
downloadgoogletest-3a8d744030e165dc7bebf70e4fbc44831059a79b.zip
googletest-3a8d744030e165dc7bebf70e4fbc44831059a79b.tar.gz
googletest-3a8d744030e165dc7bebf70e4fbc44831059a79b.tar.bz2
Disable MSVC function deprecation when using Clang
Diffstat (limited to 'googletest/src')
-rw-r--r--googletest/src/gtest-port.cc4
-rw-r--r--googletest/src/gtest.cc4
2 files changed, 4 insertions, 4 deletions
diff --git a/googletest/src/gtest-port.cc b/googletest/src/gtest-port.cc
index f8a0ad6..2ab2d25 100644
--- a/googletest/src/gtest-port.cc
+++ b/googletest/src/gtest-port.cc
@@ -942,7 +942,7 @@ GTestLog::~GTestLog() {
// Disable Microsoft deprecation warnings for POSIX functions called from
// this class (creat, dup, dup2, and close)
-GTEST_DISABLE_MSC_WARNINGS_PUSH_(4996)
+GTEST_DISABLE_MSC_DEPRECATED_PUSH_()
#if GTEST_HAS_STREAM_REDIRECTION
@@ -1026,7 +1026,7 @@ class CapturedStream {
GTEST_DISALLOW_COPY_AND_ASSIGN_(CapturedStream);
};
-GTEST_DISABLE_MSC_WARNINGS_POP_()
+GTEST_DISABLE_MSC_DEPRECATED_POP_()
static CapturedStream* g_captured_stderr = NULL;
static CapturedStream* g_captured_stdout = NULL;
diff --git a/googletest/src/gtest.cc b/googletest/src/gtest.cc
index 9c25c99..9a69080 100644
--- a/googletest/src/gtest.cc
+++ b/googletest/src/gtest.cc
@@ -860,9 +860,9 @@ TimeInMillis GetTimeInMillis() {
// (deprecated function) there.
// TODO(kenton@google.com): Use GetTickCount()? Or use
// SystemTimeToFileTime()
- GTEST_DISABLE_MSC_WARNINGS_PUSH_(4996)
+ GTEST_DISABLE_MSC_DEPRECATED_PUSH_()
_ftime64(&now);
- GTEST_DISABLE_MSC_WARNINGS_POP_()
+ GTEST_DISABLE_MSC_DEPRECATED_POP_()
return static_cast<TimeInMillis>(now.time) * 1000 + now.millitm;
#elif GTEST_HAS_GETTIMEOFDAY_