summaryrefslogtreecommitdiff
path: root/include/gtest/gtest.h
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2010-05-10 17:23:54 +0000
committerzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2010-05-10 17:23:54 +0000
commit99f2fd8ac474e2a8cf922410af199fa7a0057f7b (patch)
tree06b339e039e74d1a4359f0f49b7c4bfc7348cd53 /include/gtest/gtest.h
parent678f92b8f17c8edf1a21efb401c91b355fe7bb2b (diff)
downloadgoogletest-99f2fd8ac474e2a8cf922410af199fa7a0057f7b.tar.gz
Suppresses some Clang warnings (by Chandler Carruth, Jeffrey Yasskin, and Zhanyong Wan).
git-svn-id: http://googletest.googlecode.com/svn/trunk@426 861a406c-534a-0410-8894-cb66d6ee9925
Diffstat (limited to 'include/gtest/gtest.h')
-rw-r--r--include/gtest/gtest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gtest/gtest.h b/include/gtest/gtest.h
index 4599aba..937f476 100644
--- a/include/gtest/gtest.h
+++ b/include/gtest/gtest.h
@@ -1959,7 +1959,7 @@ GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,
// to cause a compiler error.
template <typename T1, typename T2>
bool StaticAssertTypeEq() {
- internal::StaticAssertTypeEqHelper<T1, T2>();
+ (void)internal::StaticAssertTypeEqHelper<T1, T2>();
return true;
}