diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-27 10:44:30 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-27 10:47:32 +0100 |
commit | 65191cda819ee8f4d14f6cdf12568c35e46b5c66 (patch) | |
tree | 47d394c5e3b93ab7eb98f286bab1281175671325 /cppu | |
parent | 5de65dc2d6887a9c7a5b4faa23caa53f8c05c2d0 (diff) |
bool improvements
Change-Id: I757e19313576d2c3d13af1cb720f182f0de91613
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/source/threadpool/threadpool.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppu/source/threadpool/threadpool.hxx b/cppu/source/threadpool/threadpool.hxx index 61c6e0ed7b89..18bb509486e7 100644 --- a/cppu/source/threadpool/threadpool.hxx +++ b/cppu/source/threadpool/threadpool.hxx @@ -41,7 +41,7 @@ namespace cppu_threadpool { struct EqualThreadId { - sal_Int32 operator () ( const ::rtl::ByteSequence &a , const ::rtl::ByteSequence &b ) const + bool operator () ( const ::rtl::ByteSequence &a , const ::rtl::ByteSequence &b ) const { return a == b; } |