Small improvements: code style and property name

This commit is contained in:
Vladimir Goncharov
2020-06-20 16:38:55 +03:00
parent 9ac4cd0f49
commit 46734d9a66
2 changed files with 4 additions and 6 deletions

View File

@@ -8282,10 +8282,8 @@ TEST(ThrowsPredicateCompilesTest, StringLikeMessage) {
std::string inner;
// Note: explicit conversion.
explicit operator std::string() const {
return inner;
}
};
explicit operator std::string() const { return inner; }
};
Matcher<void (*)()> matcher = ThrowsMessageHasSubstr<std::runtime_error>(
SomeCustomString{"error message"});