[clang] [clang module] Current Working Directory Pruning (PR #124786)
Steven Wu via cfe-commits
cfe-commits at lists.llvm.org
Tue Feb 4 13:15:40 PST 2025
================
@@ -63,7 +63,10 @@ enum class ScanningOptimizations {
/// Canonicalize -D and -U options.
Macros = 8,
- DSS_LAST_BITMASK_ENUM(Macros),
+ /// Ignore the compiler's working directory if it is safe.
+ IgnoreCWD = 0x10,
----------------
cachemeifyoucan wrote:
Nit: maybe update all other enum value to be hex or `<<` spelling to make format consistent.
https://github.com/llvm/llvm-project/pull/124786
More information about the cfe-commits
mailing list