diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-05 22:33:49 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-07 18:19:42 (GMT) |
commit | 28749903b67d71b35f6ff74dab7c6db1a648a1c8 (patch) | |
tree | a976993929c37e41cef23d593fa5572b20cde541 /Source/cmState.cxx | |
parent | 6c02f62f75735f6e60549ef53b06bd87e843bc35 (diff) | |
download | CMake-28749903b67d71b35f6ff74dab7c6db1a648a1c8.zip CMake-28749903b67d71b35f6ff74dab7c6db1a648a1c8.tar.gz CMake-28749903b67d71b35f6ff74dab7c6db1a648a1c8.tar.bz2 |
cmState: Internalize the initialization of a snapshot from its parent.
Diffstat (limited to 'Source/cmState.cxx')
-rw-r--r-- | Source/cmState.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmState.cxx b/Source/cmState.cxx index ce9ff32..db7519b 100644 --- a/Source/cmState.cxx +++ b/Source/cmState.cxx @@ -805,8 +805,10 @@ cmState::CreateBuildsystemDirectorySnapshot(Snapshot originSnapshot, pos->Parent = origin; pos->Root = origin; pos->Vars = this->VarTree.Extend(origin); + cmState::Snapshot snapshot = cmState::Snapshot(this, pos); originSnapshot.Position->BuildSystemDirectory->Children.push_back(snapshot); + snapshot.InitializeFromParent(); return snapshot; } |