diff options
author | Gennadiy Civil <misterg@google.com> | 2019-10-10 13:21:38 (GMT) |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2019-10-10 13:21:38 (GMT) |
commit | cb1d5db1a104c7161fce89483dcfbe0ccb9bb28b (patch) | |
tree | b58ff93963fe15b329ccdcc141e74dc357ecc5ee /googletest/include | |
parent | cd17fa2abda2a2e4111cdabd62a87aea16835014 (diff) | |
parent | 3339b97c6a7fb908cd343ff8251d86782ea264a8 (diff) | |
download | googletest-cb1d5db1a104c7161fce89483dcfbe0ccb9bb28b.zip googletest-cb1d5db1a104c7161fce89483dcfbe0ccb9bb28b.tar.gz googletest-cb1d5db1a104c7161fce89483dcfbe0ccb9bb28b.tar.bz2 |
Merge pull request #2448 from kuzkry:bad-googletest-export
PiperOrigin-RevId: 273585026
Diffstat (limited to 'googletest/include')
-rw-r--r-- | googletest/include/gtest/gtest.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/googletest/include/gtest/gtest.h b/googletest/include/gtest/gtest.h index dbe5b1c..37a1762 100644 --- a/googletest/include/gtest/gtest.h +++ b/googletest/include/gtest/gtest.h @@ -2298,8 +2298,7 @@ class GTEST_API_ ScopedTrace { // to cause a compiler error. template <typename T1, typename T2> constexpr bool StaticAssertTypeEq() noexcept { - static_assert(std::is_same<T1, T2>::value, - "type1 and type2 are not the same type"); + static_assert(std::is_same<T1, T2>::value, "T1 and T2 are not the same type"); return true; } |