aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Costan <costan@gmail.com>2018-02-19 01:56:53 -0800
committerVictor Costan <costan@gmail.com>2018-02-19 02:02:59 -0800
commit8a6158717bc1587a26e6134179eb9e2a9f1c2185 (patch)
tree7c34edb95366100d41465977b05fd205621bbd68
parent3f0cf6b62ad1eb50d8736538363d3580dd640c3e (diff)
downloadgoogletest-8a6158717bc1587a26e6134179eb9e2a9f1c2185.tar.gz
googletest-8a6158717bc1587a26e6134179eb9e2a9f1c2185.tar.bz2
googletest-8a6158717bc1587a26e6134179eb9e2a9f1c2185.zip
Fix unused function warning on Mac OS.
As of recently, Google Test fails to compile with the warning below when used in projects with strict warning settings. googletest/src/gtest-death-test.cc:1004:13: error: unused function 'StackGrowsDown' [-Werror,-Wunused-function]
-rw-r--r--googletest/src/gtest-death-test.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/googletest/src/gtest-death-test.cc b/googletest/src/gtest-death-test.cc
index 92a29806..852912b5 100644
--- a/googletest/src/gtest-death-test.cc
+++ b/googletest/src/gtest-death-test.cc
@@ -983,6 +983,7 @@ static int ExecDeathTestChildMain(void* child_arg) {
}
# endif // !GTEST_OS_QNX
+# if GTEST_HAS_CLONE
// Two utility routines that together determine the direction the stack
// grows.
// This could be accomplished more elegantly by a single recursive
@@ -1007,6 +1008,7 @@ static bool StackGrowsDown() {
StackLowerThanAddress(&dummy, &result);
return result;
}
+# endif // GTEST_HAS_CLONE
// Spawns a child process with the same executable as the current process in
// a thread-safe manner and instructs it to run the death test. The