cmDefinitions: Use static member without this->.

This commit is contained in:
Stephen Kelly 2015-05-01 19:35:47 +02:00
parent 191573f792
commit 7a5039fa6c
1 changed files with 1 additions and 1 deletions

View File

@ -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);