| 559 | |
| 560 | public: |
| 561 | ~handle() |
| 562 | { |
| 563 | if (!_empty) { |
| 564 | Deleter()(_val); |
| 565 | } |
| 566 | } |
| 567 | |
| 568 | explicit handle() : _val(), _empty(true) {} |
| 569 | explicit handle(T val) : _val(val), _empty(false) |
nothing calls this directly
no outgoing calls
no test coverage detected