Home
last modified time | relevance | path

Searched defs:NoDestructor (Results 1 – 1 of 1) sorted by relevance

/system/libbase/include/android-base/
Dno_destructor.h66 explicit NoDestructor(Args&&... args) { in NoDestructor() function
72 explicit NoDestructor(const T& x) { new (storage_) T(x); } in NoDestructor() function
73 explicit NoDestructor(T&& x) { new (storage_) T(std::move(x)); } in NoDestructor() function