| Index: src/char-predicates-inl.h
|
| diff --git a/src/char-predicates-inl.h b/src/char-predicates-inl.h
|
| index 19d96db976b0b95b3d8c5797821dc04c05cca925..71d1b06a9213504a495056e6e008b425c4888931 100644
|
| --- a/src/char-predicates-inl.h
|
| +++ b/src/char-predicates-inl.h
|
| @@ -30,7 +30,7 @@ inline bool IsLineFeed(uc32 c) {
|
|
|
|
|
| inline bool IsInRange(int value, int lower_limit, int higher_limit) {
|
| - ASSERT(lower_limit <= higher_limit);
|
| + DCHECK(lower_limit <= higher_limit);
|
| return static_cast<unsigned int>(value - lower_limit) <=
|
| static_cast<unsigned int>(higher_limit - lower_limit);
|
| }
|
|
|