summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-05-01 17:35:47 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-05-01 17:36:03 (GMT)
commit7a5039fa6c0d84d1f4062211afcf0318db77f325 (patch)
tree6fd5f3f04d7e5b0aa92b0d112f7e6bcc9db2d413 /Source
parent191573f7922aea3c1abdba325f5e65e4ba03d7c8 (diff)
downloadCMake-7a5039fa6c0d84d1f4062211afcf0318db77f325.zip
CMake-7a5039fa6c0d84d1f4062211afcf0318db77f325.tar.gz
CMake-7a5039fa6c0d84d1f4062211afcf0318db77f325.tar.bz2
cmDefinitions: Use static member without this->.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmDefinitions.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDefinitions.cxx b/Source/cmDefinitions.cxx
index 6e26656..a429b6d 100644
--- a/Source/cmDefinitions.cxx
+++ b/Source/cmDefinitions.cxx
@@ -31,7 +31,7 @@ cmDefinitions::Def const& cmDefinitions::GetInternal(
++rbegin;
if(rbegin == rend)
{
- return this->NoDef;
+ return cmDefinitions::NoDef;
}
// Query the parent scope and store the result locally.
Def def = rbegin->GetInternal(key, rbegin, rend);