| Index: Source/wtf/text/ASCIIFastPath.h
|
| diff --git a/Source/wtf/text/ASCIIFastPath.h b/Source/wtf/text/ASCIIFastPath.h
|
| index 65cc3149f9f2b768c21282885441c3c708c6b036..0a8ae4da690142968a2335494c7ef63a52c50fb7 100644
|
| --- a/Source/wtf/text/ASCIIFastPath.h
|
| +++ b/Source/wtf/text/ASCIIFastPath.h
|
| @@ -119,7 +119,7 @@ inline void copyLCharsFromUCharSource(LChar* destination, const UChar* source, s
|
| if (length > ucharsPerLoop) {
|
| const size_t endLength = length - ucharsPerLoop + 1;
|
| for (; i < endLength; i += ucharsPerLoop) {
|
| -#ifndef NDEBUG
|
| +#if ENABLE(ASSERT)
|
| for (unsigned checkIndex = 0; checkIndex < ucharsPerLoop; ++checkIndex)
|
| ASSERT(!(source[i+checkIndex] & 0xff00));
|
| #endif
|
|
|