summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-02-08 18:41:54 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-02-08 18:41:54 (GMT)
commit7df05c8198cfcc60d4fd067214c630f51e11f2eb (patch)
treeac63809823d458d4f315a5bfe1a484409a3096ed /Source
parent7dab997771e4f496fd71a4e9c3abc26063c57c68 (diff)
parent2ce7231f56807b62917e6da1336f033d5386694a (diff)
downloadCMake-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.cxx4
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);
}