From 30a021cc224d420725bd7e88277cc3cca7c67ae4 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sun, 26 Apr 2015 16:22:52 +0200 Subject: cmMakefile: Implement RaiseScope in terms of local Get method. The cmDefinitions::Get will change behavior in follow up commits. --- Source/cmMakefile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index bd42f4e..4bbd5f1 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -121,7 +121,7 @@ public: if(cmDefinitions* up = cur.GetParent()) { // First localize the definition in the current scope. - cur.Get(var); + this->GetDefinition(var); // Now update the definition in the parent scope. up->Set(var, varDef); -- cgit v0.12