diff options
author | Jack Lloyd <[email protected]> | 2018-12-02 13:59:51 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-12-02 13:59:51 -0500 |
commit | 387781c309596824b6cde965ba61bfa8a62c1817 (patch) | |
tree | 50f34304a2804fde64f4ddd55c3210428a888c19 /src/lib/math | |
parent | d357b584454a5d42105cc7d4656cbf395522fd5b (diff) |
One variable per line
Diffstat (limited to 'src/lib/math')
-rw-r--r-- | src/lib/math/mp/mp_core.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/math/mp/mp_core.h b/src/lib/math/mp/mp_core.h index 2824a3456..d01c13a5e 100644 --- a/src/lib/math/mp/mp_core.h +++ b/src/lib/math/mp/mp_core.h @@ -737,7 +737,8 @@ inline word bigint_divop(word n1, word n0, word d) return ((static_cast<dword>(n1) << BOTAN_MP_WORD_BITS) | n0) / d; #else - word high = n1 % d, quotient = 0; + word high = n1 % d; + word quotient = 0; for(size_t i = 0; i != BOTAN_MP_WORD_BITS; ++i) { |