diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-30 22:18:33 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-02 23:14:33 (GMT) |
commit | da28f11523644cdc2138a0cde2c4c015948ff46c (patch) | |
tree | 8448e145a4236a96bb8685fc4ac4711e82aae6ec /Source/cmake.cxx | |
parent | d3bb5da9294ddbfcc5fddf7ba3dafd2c3e0b32b2 (diff) | |
download | CMake-da28f11523644cdc2138a0cde2c4c015948ff46c.zip CMake-da28f11523644cdc2138a0cde2c4c015948ff46c.tar.gz CMake-da28f11523644cdc2138a0cde2c4c015948ff46c.tar.bz2 |
cmState: Add CreateBaseSnapshot method.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 23803ef..ee5d53c 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -134,7 +134,7 @@ cmake::cmake() this->Policies = new cmPolicies(); this->State = new cmState(this); - this->CurrentSnapshot = this->State->CreateSnapshot(cmState::Snapshot()); + this->CurrentSnapshot = this->State->CreateBaseSnapshot(); #ifdef __APPLE__ struct rlimit rlp; |