From c7c1d531b9a77a735183f67a6d8b538691284f92 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Wed, 15 Mar 2023 18:06:31 -0700 Subject: [PATCH] [Lex] Use false instead of 0 (NFC) --- clang/include/clang/Lex/Preprocessor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.7.4