summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-30 23:50:45 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-05-01 17:45:05 (GMT)
commit6c7dad41d9f5e9b6ab6bdd6ddee837aa5509e19e (patch)
treecc8e71402302578db09a24e52bdbe222e9cc7a2c /Source/cmMakefile.cxx
parenta7ce0c7bc03efcfff6bf9fecc52663409262d73d (diff)
downloadCMake-6c7dad41d9f5e9b6ab6bdd6ddee837aa5509e19e.zip
CMake-6c7dad41d9f5e9b6ab6bdd6ddee837aa5509e19e.tar.gz
CMake-6c7dad41d9f5e9b6ab6bdd6ddee837aa5509e19e.tar.bz2
cmDefinitions: Make Get method static.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index b16d7e6..4ed2419 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -65,8 +65,8 @@ public:
const char* GetDefinition(std::string const& name)
{
- return this->VarStack.back().Get(name, this->VarStack.rbegin(),
- this->VarStack.rend());
+ return cmDefinitions::Get(name, this->VarStack.rbegin(),
+ this->VarStack.rend());
}
void SetDefinition(std::string const& name, std::string const& value)