| 461 | } |
| 462 | |
| 463 | static std::pair<bool, char const*> consistentStringProperty(char const* lhs, |
| 464 | char const* rhs) |
| 465 | { |
| 466 | bool const b = strcmp(lhs, rhs) == 0; |
| 467 | return { b, b ? lhs : nullptr }; |
| 468 | } |
| 469 | |
| 470 | static std::pair<bool, std::string> consistentStringProperty( |
| 471 | std::string const& lhs, std::string const& rhs) |
no outgoing calls
no test coverage detected
searching dependent graphs…