Merge topic 'style-fixes'
2ce7231
Style: Use this-> when invoking member functions.
This commit is contained in:
commit
7df05c8198
|
@ -115,13 +115,13 @@ void cmIncludeDirectoryCommand::GetIncludes(const std::string &arg,
|
||||||
if (pos)
|
if (pos)
|
||||||
{
|
{
|
||||||
std::string inc = arg.substr(lastPos,pos);
|
std::string inc = arg.substr(lastPos,pos);
|
||||||
NormalizeInclude(inc);
|
this->NormalizeInclude(inc);
|
||||||
incs.push_back(inc);
|
incs.push_back(inc);
|
||||||
}
|
}
|
||||||
lastPos = pos + 1;
|
lastPos = pos + 1;
|
||||||
}
|
}
|
||||||
std::string inc = arg.substr(lastPos);
|
std::string inc = arg.substr(lastPos);
|
||||||
NormalizeInclude(inc);
|
this->NormalizeInclude(inc);
|
||||||
incs.push_back(inc);
|
incs.push_back(inc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue