diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-02-06 10:47:14 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-02-06 23:10:04 (GMT) |
commit | 2ce7231f56807b62917e6da1336f033d5386694a (patch) | |
tree | 99d9f6c41868dbdb4b432f3403c467b727ecc4bd /Source/cmIncludeDirectoryCommand.cxx | |
parent | 47eacab06da33230fb06c9075a287d465aa237c4 (diff) | |
download | CMake-2ce7231f56807b62917e6da1336f033d5386694a.zip CMake-2ce7231f56807b62917e6da1336f033d5386694a.tar.gz CMake-2ce7231f56807b62917e6da1336f033d5386694a.tar.bz2 |
Style: Use this-> when invoking member functions.
Diffstat (limited to 'Source/cmIncludeDirectoryCommand.cxx')
-rw-r--r-- | Source/cmIncludeDirectoryCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmIncludeDirectoryCommand.cxx b/Source/cmIncludeDirectoryCommand.cxx index 671e09f..ffb0e80 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); } |