aboutsummaryrefslogtreecommitdiffstats
path: root/src/bigint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bigint.cpp')
-rw-r--r--src/bigint.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/bigint.cpp b/src/bigint.cpp
index e7b4f2c15..7fb5896f3 100644
--- a/src/bigint.cpp
+++ b/src/bigint.cpp
@@ -376,22 +376,6 @@ BigInt BigInt::operator-() const
}
/*************************************************
-* Return a reference to the indexed word *
-*************************************************/
-word& BigInt::operator[](u32bit index)
- {
- return rep[index];
- }
-
-/*************************************************
-* Return the value of the indexed word *
-*************************************************/
-word BigInt::operator[](u32bit index) const
- {
- return rep[index];
- }
-
-/*************************************************
* Return the absolute value of this number *
*************************************************/
BigInt BigInt::abs() const