summaryrefslogtreecommitdiff
path: root/idlc/inc/idlc/idlctypes.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/inc/idlc/idlctypes.hxx')
-rw-r--r--idlc/inc/idlc/idlctypes.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idlc/inc/idlc/idlctypes.hxx b/idlc/inc/idlc/idlctypes.hxx
index fcda52100538..33e7a68b3900 100644
--- a/idlc/inc/idlc/idlctypes.hxx
+++ b/idlc/inc/idlc/idlctypes.hxx
@@ -32,7 +32,7 @@
struct EqualString
{
- sal_Bool operator()(const OString& str1, const OString& str2) const
+ bool operator()(const OString& str1, const OString& str2) const
{
return (str1 == str2);
}
@@ -48,7 +48,7 @@ struct HashString
struct LessString
{
- sal_Bool operator()(const OString& str1, const OString& str2) const
+ bool operator()(const OString& str1, const OString& str2) const
{
return (str1 < str2);
}