diff options
-rw-r--r-- | clang/include/clang/Lex/Preprocessor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Lex/Preprocessor.h b/clang/include/clang/Lex/Preprocessor.h index b3c3a80..37e1602 100644 --- a/clang/include/clang/Lex/Preprocessor.h +++ b/clang/include/clang/Lex/Preprocessor.h @@ -2850,7 +2850,7 @@ private: /// This boolean state keeps track if the current scanned token (by this PP) /// is in an "-Wunsafe-buffer-usage" opt-out region. Assuming PP scans a /// translation unit in a linear order. - bool InSafeBufferOptOutRegion = 0; + bool InSafeBufferOptOutRegion = false; /// Hold the start location of the current "-Wunsafe-buffer-usage" opt-out /// region if PP is currently in such a region. Hold undefined value |