diff options
author | Brad King <brad.king@kitware.com> | 2011-10-10 13:44:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-10-10 13:46:27 (GMT) |
commit | 32f8437bbfc7141ba4ff9c6dd4311e67c25c2ad2 (patch) | |
tree | bb5772190d5bdc715b9c20de7fb30d5555376ab9 /Source/cmGlobalGenerator.h | |
parent | 029ab3102e9aa21b4d3bc0471884e8c877bf5c9e (diff) | |
download | CMake-32f8437bbfc7141ba4ff9c6dd4311e67c25c2ad2.zip CMake-32f8437bbfc7141ba4ff9c6dd4311e67c25c2ad2.tar.gz CMake-32f8437bbfc7141ba4ff9c6dd4311e67c25c2ad2.tar.bz2 |
Fix line-too-long style violations
Commit 8a0eb78f (Constify many getters of cmGlobalGenerator, 2011-03-26)
added const qualifiers to many cmGlobalGenerator methods but left the
resulting lines beyond our style's limit of 79 characters.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 96a326c..9f140a9 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -220,7 +220,8 @@ public: /** Get the manifest of all targets that will be built for each configuration. This is valid during generation only. */ - cmTargetManifest const& GetTargetManifest() const { return this->TargetManifest; } + cmTargetManifest const& GetTargetManifest() const + { return this->TargetManifest; } /** Get the content of a directory. Directory listings are loaded from disk at most once and cached. During the generation step @@ -231,12 +232,12 @@ public: void AddTarget(cmTargets::value_type &v); - virtual const char* GetAllTargetName() const { return "ALL_BUILD"; } + virtual const char* GetAllTargetName() const { return "ALL_BUILD"; } virtual const char* GetInstallTargetName() const { return "INSTALL"; } virtual const char* GetInstallLocalTargetName() const { return 0; } virtual const char* GetInstallStripTargetName() const { return 0; } virtual const char* GetPreinstallTargetName() const { return 0; } - virtual const char* GetTestTargetName() const { return "RUN_TESTS"; } + virtual const char* GetTestTargetName() const { return "RUN_TESTS"; } virtual const char* GetPackageTargetName() const { return "PACKAGE"; } virtual const char* GetPackageSourceTargetName() const { return 0; } virtual const char* GetEditCacheTargetName() const { return 0; } |