MCPcopy Create free account
hub / github.com/FastLED/FastLED / unique_ptr

Method unique_ptr

src/fl/stl/unique_ptr.h:48–48  ·  view source on GitHub ↗

Constructors

Source from the content-addressed store, hash-verified

46public:
47 // Constructors
48 constexpr unique_ptr() FL_NOEXCEPT : mPtr(nullptr), mDeleter() {}
49 constexpr unique_ptr(fl::nullptr_t) FL_NOEXCEPT : mPtr(nullptr), mDeleter() {}
50 explicit unique_ptr(pointer p) FL_NOEXCEPT : mPtr(p), mDeleter() {}
51 unique_ptr(pointer p, const Deleter& d) FL_NOEXCEPT : mPtr(p), mDeleter(d) {}

Callers

nothing calls this directly

Calls 1

releaseMethod · 0.45

Tested by

no test coverage detected