Home
last modified time | relevance | path

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

/llvm-project/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
H A Dunique_ptr.pass.cpp86 struct MovingDeleter { struct
87 explicit MovingDeleter(int *moves) : moves_(moves) {} in MovingDeleter() argument
88 MovingDeleter(MovingDeleter&& rhs) : moves_(rhs.moves_) { *moves_ += 1; } in MovingDeleter() function
89 void operator()(int*) const {} in operator ()()
90 int *moves_;