diff options
author | kosak <kosak@google.com> | 2014-01-29 07:30:13 +0000 |
---|---|---|
committer | kosak <kosak@google.com> | 2014-01-29 07:30:13 +0000 |
commit | fc4aa1d7188322dc0ad28f2b43b9002d67e86a24 (patch) | |
tree | 4694b3e7aa963e502a6975e19ec287a31d0ab58a /test/gmock-internal-utils_test.cc | |
parent | b5c81098a8ccc25e313ffca56c911200b3591ea0 (diff) | |
download | googletest-fc4aa1d7188322dc0ad28f2b43b9002d67e86a24.tar.gz googletest-fc4aa1d7188322dc0ad28f2b43b9002d67e86a24.tar.bz2 googletest-fc4aa1d7188322dc0ad28f2b43b9002d67e86a24.zip |
Suppress "Conditional expression is constant" warning on Visual Studio.
Diffstat (limited to 'test/gmock-internal-utils_test.cc')
-rw-r--r-- | test/gmock-internal-utils_test.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/gmock-internal-utils_test.cc b/test/gmock-internal-utils_test.cc index 3c78f647..b6a66440 100644 --- a/test/gmock-internal-utils_test.cc +++ b/test/gmock-internal-utils_test.cc @@ -250,7 +250,9 @@ TEST(LosslessArithmeticConvertibleTest, FloatingPointToFloatingPoint) { // Larger size => smaller size is not fine. EXPECT_FALSE((LosslessArithmeticConvertible<double, float>::value)); + GTEST_INTENTIONAL_CONST_COND_PUSH_ if (sizeof(double) == sizeof(long double)) { // NOLINT + GTEST_INTENTIONAL_CONST_COND_POP_ // In some implementations (e.g. MSVC), double and long double // have the same size. EXPECT_TRUE((LosslessArithmeticConvertible<long double, double>::value)); |