diff options
author | David Cole <david.cole@kitware.com> | 2011-02-04 15:38:22 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2011-02-04 15:38:22 (GMT) |
commit | a58ace68ce3a0ca69d0f7e3f103eab65d7302a9a (patch) | |
tree | 4a39232f2bf567bd834a0c24a0296d6171964017 /Source | |
parent | 106958c047c9af783b0216916c8e0d8c52595ff6 (diff) | |
download | CMake-a58ace68ce3a0ca69d0f7e3f103eab65d7302a9a.zip CMake-a58ace68ce3a0ca69d0f7e3f103eab65d7302a9a.tar.gz CMake-a58ace68ce3a0ca69d0f7e3f103eab65d7302a9a.tar.bz2 |
Fix KWStyle line-too-long complaint (#2828)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmake.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 215971f..8dbc952 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -484,7 +484,8 @@ bool cmake::SetCacheArgs(const std::vector<std::string>& args) return true; } -void cmake::ReadListFile(const std::vector<std::string>& args, const char *path) +void cmake::ReadListFile(const std::vector<std::string>& args, + const char *path) { // if a generator was not yet created, temporarily create one cmGlobalGenerator *gg = this->GetGlobalGenerator(); |