[NFC] remove unused llvm::deleter

This commit is contained in:
Yuanfang Chen 2020-07-19 00:26:55 -07:00
parent ca1e69a675
commit 877b2593c2
1 changed files with 0 additions and 9 deletions

View File

@ -206,15 +206,6 @@ public:
explicit operator bool() const { return callback; }
};
// deleter - Very very very simple method that is used to invoke operator
// delete on something. It is used like this:
//
// for_each(V.begin(), B.end(), deleter<Interval>);
template <class T>
inline void deleter(T *Ptr) {
delete Ptr;
}
//===----------------------------------------------------------------------===//
// Extra additions to <iterator>
//===----------------------------------------------------------------------===//