Merge topic 'performance_fix'
3e4ba89
Only pay for unused variable checking if it is on.
This commit is contained in:
commit
9340ab28cc
|
@ -1759,6 +1759,10 @@ void cmMakefile::AddDefinition(const char* name, bool value)
|
|||
|
||||
void cmMakefile::CheckForUnusedVariables() const
|
||||
{
|
||||
if (!this->WarnUnused)
|
||||
{
|
||||
return;
|
||||
}
|
||||
const cmDefinitions& defs = this->Internal->VarStack.top();
|
||||
const std::set<cmStdString>& locals = defs.LocalKeys();
|
||||
std::set<cmStdString>::const_iterator it = locals.begin();
|
||||
|
|
Loading…
Reference in New Issue