Constructs a matcher that matches a const std::string& whose value is equal to s.
| 9656 | // Constructs a matcher that matches a const std::string& whose value is |
| 9657 | // equal to s. |
| 9658 | Matcher<const std::string&>::Matcher(const std::string& s) { *this = Eq(s); } |
| 9659 | |
| 9660 | // Constructs a matcher that matches a const std::string& whose value is |
| 9661 | // equal to s. |