Presets: Remove duplicated call to ComputePresetsInheritance()

19305afd8a (presets: Improve JSON parser and error messages,
2023-03-22) mistakenly duplicated the call to
ComputePresetsInheritance() for configure presets. Undo that
errant duplication by removing the extra call.
This commit is contained in:
Craig Scott
2025-01-18 18:00:07 +11:00
parent 759b55991a
commit 9a18ca3a31

View File

@@ -1090,7 +1090,6 @@ bool cmCMakePresetsGraph::ReadProjectPresetsInternal(bool allowNoFiles)
}
bool result = ComputePresetInheritance(this->ConfigurePresets, *this) &&
ComputePresetInheritance(this->ConfigurePresets, *this) &&
ComputePresetInheritance(this->BuildPresets, *this) &&
ComputePresetInheritance(this->TestPresets, *this) &&
ComputePresetInheritance(this->PackagePresets, *this) &&