Searched refs:FuncDelete (Results 1 – 1 of 1) sorted by relevance
36 struct FuncDelete { struct37 FuncDelete() : mF() { } in FuncDelete() argument38 explicit FuncDelete(Func f) : mF(std::move(f)) {} in FuncDelete() function40 FuncDelete(const FuncDelete& other) = default;41 FuncDelete(FuncDelete&& other) = default;42 FuncDelete& operator=(const FuncDelete& other) = default; argument43 FuncDelete& operator=(FuncDelete&& other) = default; argument46 template <class U> friend struct FuncDelete;50 FuncDelete(const FuncDelete<U>& other) : mF(other.mF) {} in FuncDelete() argument52 FuncDelete(FuncDelete<U>&& other) : mF(std::move(other.mF)) {} in FuncDelete() function[all …]