| 82 | Ptr(const Ptr &) = delete; |
| 83 | Ptr(Ptr &&Other) { std::swap(Ffi, Other.Ffi); } |
| 84 | ~Ptr() { |
| 85 | if (Ffi != nullptr) { |
| 86 | deletePtr(Ffi); |
| 87 | } |
| 88 | } |
| 89 | operator Pffi() const { return Ffi; } |
| 90 | operator Pffi *() { return &Ffi; } |
| 91 | }; |
nothing calls this directly
no test coverage detected