MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / ~handle

Method ~handle

src/backward.h:561–566  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

559
560public:
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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected