| 76 | } |
| 77 | |
| 78 | bool StringInterner::contains(const string_view& sv) const { |
| 79 | return mEntries.find(sv) != mEntries.end(); |
| 80 | } |
| 81 | |
| 82 | bool StringInterner::contains(const char* str) const { |
| 83 | if (!str) return false; |
nothing calls this directly
no test coverage detected