| 255 | class KeyPath { |
| 256 | public: |
| 257 | KeyPath(slice_NONNULL spec, FLError *err) :_path(FLKeyPath_New(spec, err)) { } |
| 258 | ~KeyPath() {FLKeyPath_Free(_path);} |
| 259 | |
| 260 | KeyPath(KeyPath &&kp) :_path(kp._path) {kp._path = nullptr;} |
nothing calls this directly
no test coverage detected