| 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 da2ba8055a95640e02ad42a7500e4b399e21ad81..dcc433f1ba3fd64130546a554a4d0ff283542244 100644
|
| --- a/third_party/WebKit/Source/wtf/dtoa/utils.h
|
| +++ b/third_party/WebKit/Source/wtf/dtoa/utils.h
|
| @@ -165,8 +165,7 @@ namespace double_conversion {
|
|
|
| // Access individual vector elements.
|
| T& operator[](int index) const {
|
| - CHECK_LE(0, index);
|
| - CHECK_LT(index, length_);
|
| + RELEASE_ASSERT(0 <= index && index < length_);
|
| return start_[index];
|
| }
|
|
|
|
|