diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-12-26 07:06:36 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-01-04 10:28:56 (GMT) |
commit | 5b6e9bea19ff65387ec18fe8c61e332e95776445 (patch) | |
tree | a8e91041fe2768c8f0223385b5124978ffba5c8f /Source/cmIncludeDirectoryCommand.cxx | |
parent | 6db7e6d24c68085f16dcf6d8a86ae0f74e9a1f01 (diff) | |
download | CMake-5b6e9bea19ff65387ec18fe8c61e332e95776445.zip CMake-5b6e9bea19ff65387ec18fe8c61e332e95776445.tar.gz CMake-5b6e9bea19ff65387ec18fe8c61e332e95776445.tar.bz2 |
Style: Use this-> when invoking member function.
Diffstat (limited to 'Source/cmIncludeDirectoryCommand.cxx')
-rw-r--r-- | Source/cmIncludeDirectoryCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmIncludeDirectoryCommand.cxx b/Source/cmIncludeDirectoryCommand.cxx index 30c1743..e20fe02 100644 --- a/Source/cmIncludeDirectoryCommand.cxx +++ b/Source/cmIncludeDirectoryCommand.cxx @@ -55,7 +55,7 @@ bool cmIncludeDirectoryCommand std::vector<std::string> includes; - GetIncludes(*i, includes); + this->GetIncludes(*i, includes); if (before) { |