Use IsReadableTypeName IsReadableTypeName in OfType function in gmock-matchers_test.cc

This commit is contained in:
Muhammad Hilman Beyri 2020-01-12 21:29:54 -05:00
parent 3aa538cbfc
commit c7137f0b84

View File

@ -140,7 +140,7 @@ Matcher<int> GreaterThan(int n) {
std::string OfType(const std::string& type_name) {
#if GTEST_HAS_RTTI
return " (of type " + type_name + ")";
return IsReadableTypeName(type_name) ? " (of type " + type_name + ")" : "";
#else
return "";
#endif