| 455 | |
| 456 | template <> |
| 457 | std::pair<bool, bool> consistentProperty(bool lhs, bool rhs, |
| 458 | CompatibleType /*unused*/) |
| 459 | { |
| 460 | return { lhs == rhs, lhs }; |
| 461 | } |
| 462 | |
| 463 | static std::pair<bool, char const*> consistentStringProperty(char const* lhs, |
| 464 | char const* rhs) |
no test coverage detected
searching dependent graphs…