aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-07 18:00:20 +0000
committerlloyd <[email protected]>2008-09-07 18:00:20 +0000
commit555c07fad06d84402f756b1a602b05b062c55dba (patch)
tree849dab15501da617ecdfc45d7d5a4e1959729abd /src
parentdc9482652ea5f58abb0666b0d830c9344c1a2cea (diff)
Inline BigInt::operator[]
Diffstat (limited to 'src')
-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