diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-25 16:40:18 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-25 16:40:18 +0200 |
commit | 4b9faadd866f66e3e086e37d07cdaf81d988939f (patch) | |
tree | ec6c0731dd36112672c329fea7c57b3b25a59af4 /comphelper | |
parent | 279f0505545eed63be061f6eee47655ddd082ed8 (diff) |
Some more sal_Bool -> bool
Change-Id: Ie29e3610ae7fc7a489b367fd6797db7547d47c49
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/anycompare.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/misc/anycompare.cxx b/comphelper/source/misc/anycompare.cxx index 18ae7bd95caa..5704888a98ef 100644 --- a/comphelper/source/misc/anycompare.cxx +++ b/comphelper/source/misc/anycompare.cxx @@ -167,7 +167,7 @@ namespace comphelper pComparator.reset( new ScalarPredicateLess< sal_Unicode >() ); break; case TypeClass_BOOLEAN: - pComparator.reset( new ScalarPredicateLess< sal_Bool >() ); + pComparator.reset( new ScalarPredicateLess< bool >() ); break; case TypeClass_BYTE: pComparator.reset( new ScalarPredicateLess< sal_Int8 >() ); |