Kaydet (Commit) eaa9142f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:redundantcast: tools

(after a to-be-committed improved loplugin:cstylecast would have rewritten the
C-style casts into static_casts)

Change-Id: I20c94335b3ddeeea40af1f2b0d3777f139186a01
üst 83f69a12
...@@ -186,7 +186,7 @@ inline bool BigInt::IsNeg() const ...@@ -186,7 +186,7 @@ inline bool BigInt::IsNeg() const
if ( !bIsBig ) if ( !bIsBig )
return (nVal < 0); return (nVal < 0);
else else
return (bool)bIsNeg; return bIsNeg;
} }
inline bool BigInt::IsZero() const inline bool BigInt::IsZero() const
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment