summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/comphelper/stl_types.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/stl_types.hxx b/include/comphelper/stl_types.hxx
index cef5afdff3f2..cb96dbd4e12b 100644
--- a/include/comphelper/stl_types.hxx
+++ b/include/comphelper/stl_types.hxx
@@ -43,10 +43,10 @@ namespace comphelper
//.........................................................................
//========================================================================
-// comparisation functions
+// comparison functors
//------------------------------------------------------------------------
- struct UStringLess : public ::std::binary_function< OUString, OUString, bool>
+struct UStringLess : public ::std::binary_function< OUString, OUString, bool>
{
bool operator() (const OUString& x, const OUString& y) const { return x < y ? true : false;} // construct prevents a MSVC6 warning
};