summaryrefslogtreecommitdiffstats
path: root/base/memory/scoped_ptr.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/memory/scoped_ptr.h')
-rw-r--r--base/memory/scoped_ptr.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/base/memory/scoped_ptr.h b/base/memory/scoped_ptr.h
index ec77952..50a4e09 100644
--- a/base/memory/scoped_ptr.h
+++ b/base/memory/scoped_ptr.h
@@ -96,21 +96,6 @@
#include <memory>
-namespace base {
-
-// Function object which invokes 'free' on its parameter, which must be
-// a pointer. Can be used to store malloc-allocated pointers in scoped_ptr:
-//
-// scoped_ptr<int, base::FreeDeleter> foo_ptr(
-// static_cast<int*>(malloc(sizeof(int))));
-struct FreeDeleter {
- inline void operator()(void* ptr) const {
- free(ptr);
- }
-};
-
-} // namespace base
-
template <typename T, typename D = std::default_delete<T>>
using scoped_ptr = std::unique_ptr<T, D>;