mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 00:11:07 -06:00
cmGeneratorExpressionDAGChecker: Reduce duplication in constructor
This commit is contained in:
@@ -36,15 +36,9 @@ cmGeneratorExpressionDAGChecker::cmGeneratorExpressionDAGChecker(
|
||||
cmGeneratorTarget const* target, std::string property,
|
||||
const GeneratorExpressionContent* content,
|
||||
cmGeneratorExpressionDAGChecker* parent)
|
||||
: Parent(parent)
|
||||
, Target(target)
|
||||
, Property(std::move(property))
|
||||
, Content(content)
|
||||
, Backtrace()
|
||||
, TransitivePropertiesOnly(false)
|
||||
, CMP0131(false)
|
||||
: cmGeneratorExpressionDAGChecker(cmListFileBacktrace(), target,
|
||||
std::move(property), content, parent)
|
||||
{
|
||||
this->Initialize();
|
||||
}
|
||||
|
||||
void cmGeneratorExpressionDAGChecker::Initialize()
|
||||
|
||||
Reference in New Issue
Block a user