| 28 | */ |
| 29 | struct StringView { |
| 30 | StringView() = delete; |
| 31 | constexpr StringView(const char* s) : str(s), lenght(__builtin_strlen(s)) {} |
| 32 | |
| 33 | constexpr bool operator==(const StringView& other) const { |
nothing calls this directly
no outgoing calls
no test coverage detected