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

clang-analyzer-deadcode.DeadStores

Change-Id: Iec5a5fe5f14a9dcdbd7644bf67d4a985e42cd957
üst 3dae60c3
......@@ -339,7 +339,6 @@ void BigInt::DivLong( const BigInt& rB, BigInt& rErg ) const
nQ--;
// Start division
nK = 0;
nTmp = 0;
for (i = 0; i < nLenB; i++)
{
nTmp = (long)aTmpA.nNum[j - nLenB + i]
......@@ -407,7 +406,6 @@ void BigInt::ModLong( const BigInt& rB, BigInt& rErg ) const
nQ--;
// Start division
nK = 0;
nTmp = 0;
for (i = 0; i < nLenB; i++)
{
nTmp = (long)aTmpA.nNum[j - nLenB + i]
......
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