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.h | |
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.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 6ea414a..33fede1 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -171,7 +171,7 @@ public: /** Get the include flags for the current makefile and language. */ void GetIncludeDirectories(std::vector<std::string>& dirs, - cmGeneratorTarget* target, + cmGeneratorTarget const* target, const std::string& lang = "C", const std::string& config = "", bool stripImplicitInclDirs = true) const; |