mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-15 12:16:40 +08:00
cmCommandArgumentsHelper: simplify boolean expression
This commit is contained in:
@@ -57,14 +57,7 @@ bool cmCommandArgument::MayFollow(const cmCommandArgument* current) const
|
||||
if (this->ArgumentsBeforeEmpty) {
|
||||
return true;
|
||||
}
|
||||
|
||||
std::set<const cmCommandArgument*>::const_iterator argIt =
|
||||
this->ArgumentsBefore.find(current);
|
||||
if (argIt != this->ArgumentsBefore.end()) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
return this->ArgumentsBefore.find(current) != this->ArgumentsBefore.end();
|
||||
}
|
||||
|
||||
bool cmCommandArgument::KeyMatches(const std::string& key) const
|
||||
|
Reference in New Issue
Block a user