diff options
author | lloyd <[email protected]> | 2012-08-01 14:13:49 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-08-01 14:13:49 +0000 |
commit | 3f7b562cd6a51cd796f3cb1c0151c45f2b24e2b0 (patch) | |
tree | 30efa6741faa24512014e4c08e261e717e4860cb /src/math/bigint/bigint.h | |
parent | afaac2c3668f0a0fced85649651d3d2ee9101a67 (diff) |
Remove BigInt::operator[] returning a mutable word reference
Diffstat (limited to 'src/math/bigint/bigint.h')
-rw-r--r-- | src/math/bigint/bigint.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/math/bigint/bigint.h b/src/math/bigint/bigint.h index f026e67f1..6efe53e71 100644 --- a/src/math/bigint/bigint.h +++ b/src/math/bigint/bigint.h @@ -128,13 +128,6 @@ class BOTAN_DLL BigInt * @param i a word index * @return the word at index i */ - word& operator[](size_t i) { return m_reg[i]; } - - /** - * [] operator (array access) - * @param i a word index - * @return the word at index i - */ const word& operator[](size_t i) const { return m_reg[i]; } /** |