cmState: Clear GlobVerificationManager state on Reset
It should not persist across multiple configure rounds. Fixes: #18208
This commit is contained in:
parent
c4ab098097
commit
6f3b9e8b95
@ -170,3 +170,10 @@ void cmGlobVerificationManager::AddCacheEntry(
|
||||
value.Backtraces.emplace_back(variable, backtrace);
|
||||
}
|
||||
}
|
||||
|
||||
void cmGlobVerificationManager::Reset()
|
||||
{
|
||||
this->Cache.clear();
|
||||
this->VerifyScript.clear();
|
||||
this->VerifyStamp.clear();
|
||||
}
|
||||
|
@ -37,6 +37,9 @@ protected:
|
||||
const std::string& variable,
|
||||
const cmListFileBacktrace& bt);
|
||||
|
||||
///! Clear the glob cache for state reset.
|
||||
void Reset();
|
||||
|
||||
///! Check targets should be written in generated build system.
|
||||
bool DoWriteVerifyTarget() const;
|
||||
|
||||
|
@ -267,6 +267,7 @@ cmStateSnapshot cmState::Reset()
|
||||
{
|
||||
this->GlobalProperties.clear();
|
||||
this->PropertyDefinitions.clear();
|
||||
this->GlobVerificationManager->Reset();
|
||||
|
||||
cmStateDetail::PositionType pos = this->SnapshotData.Truncate();
|
||||
this->ExecutionListFiles.Truncate();
|
||||
|
Loading…
Reference in New Issue
Block a user