summaryrefslogtreecommitdiff
path: root/include/comphelper
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-11 13:56:33 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-11 21:41:20 +0200
commit36e92f38c98e5cb21aecf07434df34b3ad75272a (patch)
tree88b90ece6f976849c41dce53a35537d1add72dd1 /include/comphelper
parent137795cd0c25bf7daf441ac2036862267c7634ab (diff)
drop TPropertyValueEqualFunctor
was only in two places, and did nothing to make the code simpler or easier to understand Change-Id: I8e91d7e00f14a0611bf563a855d616ad11da5342 Reviewed-on: https://gerrit.libreoffice.org/39813 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/comphelper')
-rw-r--r--include/comphelper/stl_types.hxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/comphelper/stl_types.hxx b/include/comphelper/stl_types.hxx
index b82db0c9c8ec..bb50c21a7e8c 100644
--- a/include/comphelper/stl_types.hxx
+++ b/include/comphelper/stl_types.hxx
@@ -63,17 +63,6 @@ public:
bool isCaseSensitive() const {return m_bCaseSensitive;}
};
-class TPropertyValueEqualFunctor
-{
-public:
- TPropertyValueEqualFunctor()
- {}
- bool operator() (const css::beans::PropertyValue& lhs, const OUString& rhs) const
- {
- return !!(lhs.Name == rhs);
- }
-};
-
/// by-value less functor for std::set<std::unique_ptr<T>>
template<class T> struct UniquePtrValueLess
{