| 6 | #include <string> |
| 7 | |
| 8 | int main() |
| 9 | { |
| 10 | const std::string firstText{"Hello"}; |
| 11 | const std::string secondText{"Bello"}; |
| 12 | |
| 13 | const bool equal = std::ranges::equal(firstText, secondText); |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected