diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:18:55 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:25:48 +0200 |
commit | abe81a0b7b5014aefec1ede55cc6b7b947c47484 (patch) | |
tree | 769331fe1b6fbdee41dff85b8259e5d275ab5dc2 /sal/rtl/byteseq.cxx | |
parent | b8f04b740fe3e61269daeccbbb9bc5752e5fd5b3 (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I6c656f991999791469015500aff1905fdb16ba65
Diffstat (limited to 'sal/rtl/byteseq.cxx')
-rw-r--r-- | sal/rtl/byteseq.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/rtl/byteseq.cxx b/sal/rtl/byteseq.cxx index 891c492f2db2..d0c77b5dc1ed 100644 --- a/sal/rtl/byteseq.cxx +++ b/sal/rtl/byteseq.cxx @@ -219,11 +219,11 @@ sal_Bool SAL_CALL rtl_byte_sequence_equals( sal_Sequence *pSequence1 , sal_Seque assert(pSequence1 && pSequence2); if (pSequence1 == pSequence2) { - return sal_True; + return true; } if (pSequence1->nElements != pSequence2->nElements) { - return sal_False; + return false; } return memcmp( |