Chromium Code Reviews| Index: third_party/WebKit/Source/wtf/dtoa/utils.h |
| diff --git a/third_party/WebKit/Source/wtf/dtoa/utils.h b/third_party/WebKit/Source/wtf/dtoa/utils.h |
| index 0a61c0155f74a499171e44c9fc35008e4f5b7b4b..2f9073631ee8d90143ef7a8db9db34f3e466580b 100644 |
| --- a/third_party/WebKit/Source/wtf/dtoa/utils.h |
| +++ b/third_party/WebKit/Source/wtf/dtoa/utils.h |
| @@ -165,7 +165,7 @@ namespace double_conversion { |
| // Access individual vector elements - checks bounds in debug mode. |
|
inferno
2016/02/09 04:30:12
Please fix the comment.
mmoroz
2016/02/09 16:50:55
Done.
|
| T& operator[](int index) const { |
| - ASSERT(0 <= index && index < length_); |
| + RELEASE_ASSERT(0 <= index && index < length_); |
| return start_[index]; |
| } |