diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-11-18 14:11:10 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-11-19 17:07:04 (GMT) |
commit | 0f876439e941c18f7fc264fbf02f5df9bc531f90 (patch) | |
tree | a46dad0a7706c61475dd0306c045d59f70f2d3c3 /Source/cmGeneratorTarget.cxx | |
parent | 1da77bf1ee4f3ba315ebb00da2eaeac474614cad (diff) | |
download | CMake-0f876439e941c18f7fc264fbf02f5df9bc531f90.zip CMake-0f876439e941c18f7fc264fbf02f5df9bc531f90.tar.gz CMake-0f876439e941c18f7fc264fbf02f5df9bc531f90.tar.bz2 |
cmGeneratorTarget: Make GetIncludeDirectories const.
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index b964f71..011fc6c 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -611,8 +611,8 @@ const char* cmGeneratorTarget::GetCreateRuleVariable() const } //---------------------------------------------------------------------------- -std::vector<std::string> cmGeneratorTarget::GetIncludeDirectories( - const char *config) +std::vector<std::string> +cmGeneratorTarget::GetIncludeDirectories(const char *config) const { return this->Target->GetIncludeDirectories(config); } |