diff options
author | Alexander Neundorf <neundorf@kde.org> | 2009-10-13 17:35:24 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2009-10-13 17:35:24 (GMT) |
commit | 4dc224e99a53e0ffe870ee3a8564ae4ab26933d5 (patch) | |
tree | 9f3dc8cf1d38da848afc7ec4720604c1680997af /Source | |
parent | 7199badb009fc0f0f1d510685aaa5ad5a7fabc84 (diff) | |
download | CMake-4dc224e99a53e0ffe870ee3a8564ae4ab26933d5.zip CMake-4dc224e99a53e0ffe870ee3a8564ae4ab26933d5.tar.gz CMake-4dc224e99a53e0ffe870ee3a8564ae4ab26933d5.tar.bz2 |
fix line length
Alex
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx index e3d29fb..3bf8976 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -270,7 +270,8 @@ void cmExtraCodeBlocksGenerator jt != it->second.end(); ++jt) { - const std::vector<std::string> & files = (*jt)->GetMakefile()->GetListFiles(); + const std::vector<std::string> & files = + (*jt)->GetMakefile()->GetListFiles(); listFiles.insert(listFiles.end(), files.begin(), files.end()); } |