diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-01 17:35:47 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-01 17:36:03 (GMT) |
commit | 7a5039fa6c0d84d1f4062211afcf0318db77f325 (patch) | |
tree | 6fd5f3f04d7e5b0aa92b0d112f7e6bcc9db2d413 /Source/cmDefinitions.cxx | |
parent | 191573f7922aea3c1abdba325f5e65e4ba03d7c8 (diff) | |
download | CMake-7a5039fa6c0d84d1f4062211afcf0318db77f325.zip CMake-7a5039fa6c0d84d1f4062211afcf0318db77f325.tar.gz CMake-7a5039fa6c0d84d1f4062211afcf0318db77f325.tar.bz2 |
cmDefinitions: Use static member without this->.
Diffstat (limited to 'Source/cmDefinitions.cxx')
-rw-r--r-- | Source/cmDefinitions.cxx | 2 |
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); |