diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-11 17:36:19 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-11 17:36:19 +0100 |
commit | eaa9142fa7a107f5f47d547f4807caa7e4c99b1e (patch) | |
tree | 1b7b2f1f51edc7042609929a457a925129d661ae /include/tools | |
parent | 83f69a1213f296e1f27748bae9b0baf9324fe517 (diff) |
loplugin:redundantcast: tools
(after a to-be-committed improved loplugin:cstylecast would have rewritten the
C-style casts into static_casts)
Change-Id: I20c94335b3ddeeea40af1f2b0d3777f139186a01
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/bigint.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/bigint.hxx b/include/tools/bigint.hxx index 8692bd2e7787..928ee7b77746 100644 --- a/include/tools/bigint.hxx +++ b/include/tools/bigint.hxx @@ -186,7 +186,7 @@ inline bool BigInt::IsNeg() const if ( !bIsBig ) return (nVal < 0); else - return (bool)bIsNeg; + return bIsNeg; } inline bool BigInt::IsZero() const |