diff options
author | Brad King <brad.king@kitware.com> | 2013-02-08 18:41:54 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-02-08 18:41:54 (GMT) |
commit | 7df05c8198cfcc60d4fd067214c630f51e11f2eb (patch) | |
tree | ac63809823d458d4f315a5bfe1a484409a3096ed /Source | |
parent | 7dab997771e4f496fd71a4e9c3abc26063c57c68 (diff) | |
parent | 2ce7231f56807b62917e6da1336f033d5386694a (diff) | |
download | CMake-7df05c8198cfcc60d4fd067214c630f51e11f2eb.zip CMake-7df05c8198cfcc60d4fd067214c630f51e11f2eb.tar.gz CMake-7df05c8198cfcc60d4fd067214c630f51e11f2eb.tar.bz2 |
Merge topic 'style-fixes'
2ce7231 Style: Use this-> when invoking member functions.
Diffstat (limited to 'Source')
-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); } |