summaryrefslogtreecommitdiff
path: root/src/scope.h
diff options
context:
space:
mode:
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];
}