diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-06 12:39:27 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-21 19:14:06 (GMT) |
commit | 080489b8a92253bedbb67cc7958351350f4b2341 (patch) | |
tree | 9e20dd487f3c99a4870831d3cb60035d7b52a739 /Source | |
parent | 8bfaadfa394c9b462259ea13df6b2df7c4544ab4 (diff) | |
download | CMake-080489b8a92253bedbb67cc7958351350f4b2341.zip CMake-080489b8a92253bedbb67cc7958351350f4b2341.tar.gz CMake-080489b8a92253bedbb67cc7958351350f4b2341.tar.bz2 |
cmMakefile: Use member directly instead of through method.
This function will not be around much longer anyway.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index cf7897e..64d8638 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -105,7 +105,7 @@ public: ++it; if(it == this->VarStack.rend()) { - cmLocalGenerator* plg = mf->GetLocalGenerator()->GetParent(); + cmLocalGenerator* plg = mf->LocalGenerator->GetParent(); if(!plg) { return false; |