@@ -906,15 +906,15 @@ class StrEqualityMatcher {
906
906
bool case_sensitive)
907
907
: string_(str), expect_eq_(expect_eq), case_sensitive_(case_sensitive) {}
908
908
909
- #if GTEST_HAS_ABSL
910
- bool MatchAndExplain (const absl::string_view & s,
909
+ #if GTEST_INTERNAL_HAS_STRING_VIEW
910
+ bool MatchAndExplain (const internal::StringView & s,
911
911
MatchResultListener* listener) const {
912
- // This should fail to compile if absl::string_view is used with wide
912
+ // This should fail to compile if StringView is used with wide
913
913
// strings.
914
914
const StringType& str = std::string (s);
915
915
return MatchAndExplain (str, listener);
916
916
}
917
- #endif // GTEST_HAS_ABSL
917
+ #endif // GTEST_INTERNAL_HAS_STRING_VIEW
918
918
919
919
// Accepts pointer types, particularly:
920
920
// const char*
@@ -932,7 +932,7 @@ class StrEqualityMatcher {
932
932
// Matches anything that can convert to StringType.
933
933
//
934
934
// This is a template, not just a plain function with const StringType&,
935
- // because absl::string_view has some interfering non-explicit constructors.
935
+ // because StringView has some interfering non-explicit constructors.
936
936
template <typename MatcheeStringType>
937
937
bool MatchAndExplain (const MatcheeStringType& s,
938
938
MatchResultListener* /* listener */ ) const {
@@ -976,15 +976,15 @@ class HasSubstrMatcher {
976
976
explicit HasSubstrMatcher (const StringType& substring)
977
977
: substring_(substring) {}
978
978
979
- #if GTEST_HAS_ABSL
980
- bool MatchAndExplain (const absl::string_view & s,
979
+ #if GTEST_INTERNAL_HAS_STRING_VIEW
980
+ bool MatchAndExplain (const internal::StringView & s,
981
981
MatchResultListener* listener) const {
982
- // This should fail to compile if absl::string_view is used with wide
982
+ // This should fail to compile if StringView is used with wide
983
983
// strings.
984
984
const StringType& str = std::string (s);
985
985
return MatchAndExplain (str, listener);
986
986
}
987
- #endif // GTEST_HAS_ABSL
987
+ #endif // GTEST_INTERNAL_HAS_STRING_VIEW
988
988
989
989
// Accepts pointer types, particularly:
990
990
// const char*
@@ -999,7 +999,7 @@ class HasSubstrMatcher {
999
999
// Matches anything that can convert to StringType.
1000
1000
//
1001
1001
// This is a template, not just a plain function with const StringType&,
1002
- // because absl::string_view has some interfering non-explicit constructors.
1002
+ // because StringView has some interfering non-explicit constructors.
1003
1003
template <typename MatcheeStringType>
1004
1004
bool MatchAndExplain (const MatcheeStringType& s,
1005
1005
MatchResultListener* /* listener */ ) const {
@@ -1032,15 +1032,15 @@ class StartsWithMatcher {
1032
1032
explicit StartsWithMatcher (const StringType& prefix) : prefix_(prefix) {
1033
1033
}
1034
1034
1035
- #if GTEST_HAS_ABSL
1036
- bool MatchAndExplain (const absl::string_view & s,
1035
+ #if GTEST_INTERNAL_HAS_STRING_VIEW
1036
+ bool MatchAndExplain (const internal::StringView & s,
1037
1037
MatchResultListener* listener) const {
1038
- // This should fail to compile if absl::string_view is used with wide
1038
+ // This should fail to compile if StringView is used with wide
1039
1039
// strings.
1040
1040
const StringType& str = std::string (s);
1041
1041
return MatchAndExplain (str, listener);
1042
1042
}
1043
- #endif // GTEST_HAS_ABSL
1043
+ #endif // GTEST_INTERNAL_HAS_STRING_VIEW
1044
1044
1045
1045
// Accepts pointer types, particularly:
1046
1046
// const char*
@@ -1055,7 +1055,7 @@ class StartsWithMatcher {
1055
1055
// Matches anything that can convert to StringType.
1056
1056
//
1057
1057
// This is a template, not just a plain function with const StringType&,
1058
- // because absl::string_view has some interfering non-explicit constructors.
1058
+ // because StringView has some interfering non-explicit constructors.
1059
1059
template <typename MatcheeStringType>
1060
1060
bool MatchAndExplain (const MatcheeStringType& s,
1061
1061
MatchResultListener* /* listener */ ) const {
@@ -1088,15 +1088,15 @@ class EndsWithMatcher {
1088
1088
public:
1089
1089
explicit EndsWithMatcher (const StringType& suffix) : suffix_(suffix) {}
1090
1090
1091
- #if GTEST_HAS_ABSL
1092
- bool MatchAndExplain (const absl::string_view & s,
1091
+ #if GTEST_INTERNAL_HAS_STRING_VIEW
1092
+ bool MatchAndExplain (const internal::StringView & s,
1093
1093
MatchResultListener* listener) const {
1094
- // This should fail to compile if absl::string_view is used with wide
1094
+ // This should fail to compile if StringView is used with wide
1095
1095
// strings.
1096
1096
const StringType& str = std::string (s);
1097
1097
return MatchAndExplain (str, listener);
1098
1098
}
1099
- #endif // GTEST_HAS_ABSL
1099
+ #endif // GTEST_INTERNAL_HAS_STRING_VIEW
1100
1100
1101
1101
// Accepts pointer types, particularly:
1102
1102
// const char*
@@ -1111,7 +1111,7 @@ class EndsWithMatcher {
1111
1111
// Matches anything that can convert to StringType.
1112
1112
//
1113
1113
// This is a template, not just a plain function with const StringType&,
1114
- // because absl::string_view has some interfering non-explicit constructors.
1114
+ // because StringView has some interfering non-explicit constructors.
1115
1115
template <typename MatcheeStringType>
1116
1116
bool MatchAndExplain (const MatcheeStringType& s,
1117
1117
MatchResultListener* /* listener */ ) const {
0 commit comments