mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 05:50:42 +00:00
Style: Use this-> when invoking member functions.
This commit is contained in:
parent
47eacab06d
commit
2ce7231f56
@ -115,13 +115,13 @@ void cmIncludeDirectoryCommand::GetIncludes(const std::string &arg,
|
||||
if (pos)
|
||||
{
|
||||
std::string inc = arg.substr(lastPos,pos);
|
||||
NormalizeInclude(inc);
|
||||
this->NormalizeInclude(inc);
|
||||
incs.push_back(inc);
|
||||
}
|
||||
lastPos = pos + 1;
|
||||
}
|
||||
std::string inc = arg.substr(lastPos);
|
||||
NormalizeInclude(inc);
|
||||
this->NormalizeInclude(inc);
|
||||
incs.push_back(inc);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user