aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/test/gmock-matchers_test.cc
diff options
context:
space:
mode:
authorKrystian Kuzniarek <krystian.kuzniarek@gmail.com>2019-08-13 22:30:12 +0200
committerKrystian Kuzniarek <krystian.kuzniarek@gmail.com>2019-08-14 14:00:44 +0200
commitec49fbca4cb84651fb2eae5d093d0342f356cf29 (patch)
tree24bdf499c55ba728098614c143232c8f5d863be0 /googlemock/test/gmock-matchers_test.cc
parent90a443f9c2437ca8a682a1ac625eba64e1d74a8a (diff)
downloadgoogletest-ec49fbca4cb84651fb2eae5d093d0342f356cf29.tar.gz
googletest-ec49fbca4cb84651fb2eae5d093d0342f356cf29.tar.bz2
googletest-ec49fbca4cb84651fb2eae5d093d0342f356cf29.zip
remove custom implementations of std::is_same
Diffstat (limited to 'googlemock/test/gmock-matchers_test.cc')
-rw-r--r--googlemock/test/gmock-matchers_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/test/gmock-matchers_test.cc b/googlemock/test/gmock-matchers_test.cc
index 74e9294f..a61d040b 100644
--- a/googlemock/test/gmock-matchers_test.cc
+++ b/googlemock/test/gmock-matchers_test.cc
@@ -6434,7 +6434,7 @@ class SampleVariantIntString {
template <typename T>
friend bool holds_alternative(const SampleVariantIntString& value) {
- return value.has_int_ == internal::IsSame<T, int>::value;
+ return value.has_int_ == std::is_same<T, int>::value;
}
template <typename T>