summaryrefslogtreecommitdiffstats
path: root/sc/inc/stlalgorithm.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-05-12 10:50:16 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-05-12 13:47:31 -0400
commite2f94a8e2cf1761f5e2b0ae166f6a8bd73e0a15d (patch)
tree02c3bfc9f5bdc351dd92b9817d2acae9be375a93 /sc/inc/stlalgorithm.hxx
parentfdo#75264 fix incorrect/missing function tips in Calc (diff)
downloadcore-e2f94a8e2cf1761f5e2b0ae166f6a8bd73e0a15d.tar.gz
core-e2f94a8e2cf1761f5e2b0ae166f6a8bd73e0a15d.zip
Move this function object to o3tl.
Change-Id: I9d1710fbed3c5753e84ed343c5136ab87909624d
Diffstat (limited to 'sc/inc/stlalgorithm.hxx')
-rw-r--r--sc/inc/stlalgorithm.hxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/sc/inc/stlalgorithm.hxx b/sc/inc/stlalgorithm.hxx
index d7b4d517b3d3..3c7014446fa4 100644
--- a/sc/inc/stlalgorithm.hxx
+++ b/sc/inc/stlalgorithm.hxx
@@ -15,19 +15,6 @@
#include <rtl/alloc.h>
-/**
- * Function object to allow deleting instances stored in STL containers as
- * pointers.
- */
-template<typename T>
-struct ScDeleteObjectByPtr : public ::std::unary_function<T*, void>
-{
- void operator() (T* p)
- {
- delete p;
- }
-};
-
namespace sc {
/**