| Index: Source/wtf/text/TextCodec.h
|
| diff --git a/Source/wtf/text/TextCodec.h b/Source/wtf/text/TextCodec.h
|
| index e85413e0a17c71a55ed315d9a1ca5c4548d05715..eaa4d495fb3f2c865d77a4c29518ea1dcec6b096 100644
|
| --- a/Source/wtf/text/TextCodec.h
|
| +++ b/Source/wtf/text/TextCodec.h
|
| @@ -66,9 +66,9 @@ enum FlushBehavior {
|
| DataEOF
|
| };
|
|
|
| -COMPILE_ASSERT(!DoNotFlush, DoNotFlush_is_falsy);
|
| -COMPILE_ASSERT(FetchEOF, FetchEOF_is_truthy);
|
| -COMPILE_ASSERT(DataEOF, DataEOF_is_truthy);
|
| +static_assert(!DoNotFlush, "DoNotFlush_is_falsy");
|
| +static_assert(FetchEOF, "FetchEOF_is_truthy");
|
| +static_assert(DataEOF, "DataEOF_is_truthy");
|
|
|
|
|
| class TextCodec {
|
|
|