summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2016-10-27 18:20:13 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2016-11-01 04:11:44 +0000
commitcb90f0976d20d0e9c61138f4572d14750ea3de07 (patch)
tree433e048782fb5b609ad560164bbef9bc23d65bae /include
parent9fa6dadc4e1e75b2fd7b7360995c524fa7a5d40e (diff)
Omit the default comparator
Change-Id: Idea8ea8dab6a86d7be6394aef1cf7f25b75009e0 Reviewed-on: https://gerrit.libreoffice.org/30319 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/IdPropArrayHelper.hxx2
-rw-r--r--include/comphelper/propagg.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/IdPropArrayHelper.hxx b/include/comphelper/IdPropArrayHelper.hxx
index a8b2f4e93f5d..59c83f1f92ad 100644
--- a/include/comphelper/IdPropArrayHelper.hxx
+++ b/include/comphelper/IdPropArrayHelper.hxx
@@ -40,7 +40,7 @@ namespace comphelper
template <typename TYPE> struct OIdPropertyArrayUsageHelperMutex
: public rtl::Static< ::osl::Mutex, OIdPropertyArrayUsageHelperMutex<TYPE> > {};
- typedef std::map< sal_Int32, ::cppu::IPropertyArrayHelper*, std::less< sal_Int32 > > OIdPropertyArrayMap;
+ typedef std::map< sal_Int32, ::cppu::IPropertyArrayHelper* > OIdPropertyArrayMap;
template <class TYPE>
class OIdPropertyArrayUsageHelper
{
diff --git a/include/comphelper/propagg.hxx b/include/comphelper/propagg.hxx
index fa91130d48ae..6481dd85d777 100644
--- a/include/comphelper/propagg.hxx
+++ b/include/comphelper/propagg.hxx
@@ -55,7 +55,7 @@ namespace internal
bool operator <(const OPropertyAccessor& rOb) const { return nPos < rOb.nPos; }
};
- typedef std::map< sal_Int32, OPropertyAccessor, ::std::less< sal_Int32 > > PropertyAccessorMap;
+ typedef std::map< sal_Int32, OPropertyAccessor > PropertyAccessorMap;
typedef PropertyAccessorMap::iterator PropertyAccessorMapIterator;
typedef PropertyAccessorMap::const_iterator ConstPropertyAccessorMapIterator;
}