mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-09 15:20:56 -06:00
cmGeneratorExpressionDAGChecker: Simplify member initialization
This commit is contained in:
@@ -35,8 +35,6 @@ cmGeneratorExpressionDAGChecker::cmGeneratorExpressionDAGChecker(
|
||||
, Property(std::move(property))
|
||||
, Content(content)
|
||||
, Backtrace(std::move(backtrace))
|
||||
, TransitivePropertiesOnly(false)
|
||||
, CMP0131(false)
|
||||
{
|
||||
const auto* top = this->Top();
|
||||
this->CheckResult = this->CheckGraph();
|
||||
|
||||
@@ -107,6 +107,6 @@ private:
|
||||
const GeneratorExpressionContent* const Content;
|
||||
const cmListFileBacktrace Backtrace;
|
||||
Result CheckResult;
|
||||
bool TransitivePropertiesOnly;
|
||||
bool CMP0131;
|
||||
bool TransitivePropertiesOnly = false;
|
||||
bool CMP0131 = false;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user