Index: src/list.h |
diff --git a/src/list.h b/src/list.h |
index 0e4e35bb41b78b3ff5aa8b106ea284d1e4ded91c..41666deb2678f47520ef64fc63691cf3676669a2 100644 |
--- a/src/list.h |
+++ b/src/list.h |
@@ -84,7 +84,7 @@ class List { |
// backing store (e.g. Add). |
inline T& operator[](int i) const { |
ASSERT(0 <= i); |
- ASSERT(i < length_); |
+ SLOW_ASSERT(i < length_); |
return data_[i]; |
} |
inline T& at(int i) const { return operator[](i); } |