summaryrefslogtreecommitdiff
path: root/src/scope.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-08-17 05:19:51 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-08-17 05:19:51 -0400
commitbbf4da9d9bcf8b2537f380fce94ddbdb226f9704 (patch)
tree24972fe2c4571cf1d32a8c58a7af70a0f9ae4b09 /src/scope.h
parentb89fcfb54a198c2b749302da29b49ef088067feb (diff)
downloadfork-ledger-bbf4da9d9bcf8b2537f380fce94ddbdb226f9704.tar.gz
fork-ledger-bbf4da9d9bcf8b2537f380fce94ddbdb226f9704.tar.bz2
fork-ledger-bbf4da9d9bcf8b2537f380fce94ddbdb226f9704.zip
Removed todo comments and dead code.
Diffstat (limited to 'src/scope.h')
-rw-r--r--src/scope.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/scope.h b/src/scope.h
index 2f33a442..49c77d1c 100644
--- a/src/scope.h
+++ b/src/scope.h
@@ -166,11 +166,9 @@ public:
}
value_t& operator[](const unsigned int index) {
- // jww (2008-07-21): exception here if it's out of bounds
return args[index];
}
const value_t& operator[](const unsigned int index) const {
- // jww (2008-07-21): exception here if it's out of bounds
return args[index];
}