diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-05 17:15:56 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-05 17:22:02 (GMT) |
commit | f7738fd122ac38fb3785e6366193fe5095b23b88 (patch) | |
tree | 5a80db0ce67d8d092671499741eea02b5baa16ab /Source/cmLocalGenerator.cxx | |
parent | b2054e1661e5c607cf25e1ac127982f58e29dd44 (diff) | |
download | CMake-f7738fd122ac38fb3785e6366193fe5095b23b88.zip CMake-f7738fd122ac38fb3785e6366193fe5095b23b88.tar.gz CMake-f7738fd122ac38fb3785e6366193fe5095b23b88.tar.bz2 |
cmLocalGenerator: Constify target in API.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 3230403..b26151c 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -1180,7 +1180,7 @@ void cmLocalGenerator::AddCompileOptions( //---------------------------------------------------------------------------- void cmLocalGenerator::GetIncludeDirectories(std::vector<std::string>& dirs, - cmGeneratorTarget* target, + cmGeneratorTarget const* target, const std::string& lang, const std::string& config, bool stripImplicitInclDirs |