-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Closed
Labels
Description
related to #129671
Putting flags and enabling it by default confuses the user, so it should be renamed to --disable-*
to avoid that confusion.
llvm-project/clang-tools-extra/include-cleaner/tool/IncludeCleaner.cpp
Lines 94 to 105 in 03505a0
cl::opt<bool> Insert{ | |
"insert", | |
cl::desc("Allow header insertions"), | |
cl::init(true), | |
cl::cat(IncludeCleaner), | |
}; | |
cl::opt<bool> Remove{ | |
"remove", | |
cl::desc("Allow header removals"), | |
cl::init(true), | |
cl::cat(IncludeCleaner), | |
}; |