diff options
author | Simon Warta <[email protected]> | 2015-07-02 11:56:26 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-07-03 10:21:26 +0200 |
commit | ccb78bbd2757628557cf9af9658ef44a195a5a8c (patch) | |
tree | c9536f384252545859356d71601083540d4aff01 /src/lib/math | |
parent | 030bb279cdb1f3a0bff1a0d09d264c9f029c393f (diff) |
s/auto/size_t/
Diffstat (limited to 'src/lib/math')
-rw-r--r-- | src/lib/math/bigint/bigint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/math/bigint/bigint.h b/src/lib/math/bigint/bigint.h index fed986882..4a37425f5 100644 --- a/src/lib/math/bigint/bigint.h +++ b/src/lib/math/bigint/bigint.h @@ -278,7 +278,7 @@ class BOTAN_DLL BigInt if(top_word < size()) { - const auto len = size() - (top_word + 1); + const size_t len = size() - (top_word + 1); if (len > 0) { clear_mem(&m_reg[top_word+1], len); |