| 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 dcc433f1ba3fd64130546a554a4d0ff283542244..ef6bcf84e68efdc965d4d99f0cfaef800baf5c26 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.
|
| T& operator[](int index) const {
|
| - RELEASE_ASSERT(0 <= index && index < length_);
|
| + CHECK(0 <= index && index < length_);
|
| return start_[index];
|
| }
|
|
|
|
|