summaryrefslogtreecommitdiff
path: root/Source/cmIncludeDirectoryCommand.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-02-06 11:47:14 +0100
committerStephen Kelly <steveire@gmail.com>2013-02-07 00:10:04 +0100
commit2ce7231f56807b62917e6da1336f033d5386694a (patch)
tree99d9f6c41868dbdb4b432f3403c467b727ecc4bd /Source/cmIncludeDirectoryCommand.cxx
parent47eacab06da33230fb06c9075a287d465aa237c4 (diff)
downloadcmake-2ce7231f56807b62917e6da1336f033d5386694a.tar.gz
Style: Use this-> when invoking member functions.
Diffstat (limited to 'Source/cmIncludeDirectoryCommand.cxx')
-rw-r--r--Source/cmIncludeDirectoryCommand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmIncludeDirectoryCommand.cxx b/Source/cmIncludeDirectoryCommand.cxx
index 671e09f258..ffb0e8086b 100644
--- a/Source/cmIncludeDirectoryCommand.cxx
+++ b/Source/cmIncludeDirectoryCommand.cxx
@@ -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);
}