mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 07:08:38 -05:00
clang-tidy: fix readability-simplify-boolean-expr warnings
This commit is contained in:
@@ -221,8 +221,8 @@ void CCONV cmAddUtilityCommand(void* arg, const char* utilityName,
|
||||
|
||||
// Pass the call to the makefile instance.
|
||||
std::vector<std::string> no_byproducts;
|
||||
mf->AddUtilityCommand(utilityName, (all ? false : true), nullptr,
|
||||
no_byproducts, depends2, commandLines);
|
||||
mf->AddUtilityCommand(utilityName, !all, nullptr, no_byproducts, depends2,
|
||||
commandLines);
|
||||
}
|
||||
|
||||
void CCONV cmAddCustomCommand(void* arg, const char* source,
|
||||
|
||||
Reference in New Issue
Block a user