Home
last modified time | relevance | path

Searched refs:FuncDelete (Results 1 – 1 of 1) sorted by relevance

/hardware/google/aemu/base/include/aemu/base/memory/
DScopedPtr.h36 struct FuncDelete { struct
37 FuncDelete() : mF() { } in FuncDelete() argument
38 explicit FuncDelete(Func f) : mF(std::move(f)) {} in FuncDelete() function
40 FuncDelete(const FuncDelete& other) = default;
41 FuncDelete(FuncDelete&& other) = default;
42 FuncDelete& operator=(const FuncDelete& other) = default; argument
43 FuncDelete& operator=(FuncDelete&& other) = default; argument
46 template <class U> friend struct FuncDelete;
50 FuncDelete(const FuncDelete<U>& other) : mF(other.mF) {} in FuncDelete() argument
52 FuncDelete(FuncDelete<U>&& other) : mF(std::move(other.mF)) {} in FuncDelete() function
[all …]