We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca1e69a commit 877b259Copy full SHA for 877b259
llvm/include/llvm/ADT/STLExtras.h
@@ -206,15 +206,6 @@ class function_ref<Ret(Params...)> {
206
explicit operator bool() const { return callback; }
207
};
208
209
-// deleter - Very very very simple method that is used to invoke operator
210
-// delete on something. It is used like this:
211
-//
212
-// for_each(V.begin(), B.end(), deleter<Interval>);
213
-template <class T>
214
-inline void deleter(T *Ptr) {
215
- delete Ptr;
216
-}
217
-
218
//===----------------------------------------------------------------------===//
219
// Extra additions to <iterator>
220
0 commit comments