| 14 | class matcher : public boost::ut::detail::op { |
| 15 | public: |
| 16 | matcher(bool result, const std::string& str) : result_{result}, str_{str} {} |
| 17 | constexpr explicit operator bool() const { return result_; } |
| 18 | friend auto operator<<(std::ostream& os, const matcher& self) |
| 19 | -> std::ostream& { |
nothing calls this directly
no outgoing calls
no test coverage detected