diff options
author | Brad King <brad.king@kitware.com> | 2015-06-04 13:13:31 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-06-04 13:13:31 (GMT) |
commit | 5a1c8806bfded9e68280542fa7573f21eb125e95 (patch) | |
tree | 79d5e41d05f8b7465000aa2f6d6ec3fa66700fac /Source/cmLocalGenerator.cxx | |
parent | b49aef6b10e4c84d31c1fe48a10878109397c553 (diff) | |
parent | cf1233a0eab7cec757d2929cc7373f94ba4fa8a8 (diff) | |
download | CMake-5a1c8806bfded9e68280542fa7573f21eb125e95.zip CMake-5a1c8806bfded9e68280542fa7573f21eb125e95.tar.gz CMake-5a1c8806bfded9e68280542fa7573f21eb125e95.tar.bz2 |
Merge topic 'rename-cmState-API'
cf1233a0 cmState: Rename GetParent method.
942df88b cmState: Rename CreateSnapshot method.
da28f115 cmState: Add CreateBaseSnapshot method.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index eb6b871..a16fc55 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -73,7 +73,7 @@ cmLocalGenerator::~cmLocalGenerator() bool cmLocalGenerator::IsRootMakefile() const { - return !this->StateSnapshot.GetParent().IsValid(); + return !this->StateSnapshot.GetBuildsystemDirectoryParent().IsValid(); } //---------------------------------------------------------------------------- |