| 23 | class MStringRef { |
| 24 | public: |
| 25 | MStringRef(): fStr(nullptr) {} |
| 26 | explicit MStringRef(MStringData* data): fStr(data) {} |
| 27 | explicit MStringRef(size_t len) { alloc(len); } |
| 28 | MStringRef(const char* str, size_t len) { create(str, len); } |
nothing calls this directly
no outgoing calls
no test coverage detected