diff options
author | Brad King <brad.king@kitware.com> | 2006-10-03 13:12:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-10-03 13:12:27 (GMT) |
commit | a85060439c8f9702dc4a82eaed1d3587d4aa8da0 (patch) | |
tree | edbddd499628846baa7704e8340c285db9a19e4d /Source | |
parent | 6eef6638a5ca1c76b7d51e9d71bc5ef9c96875e0 (diff) | |
download | CMake-a85060439c8f9702dc4a82eaed1d3587d4aa8da0.zip CMake-a85060439c8f9702dc4a82eaed1d3587d4aa8da0.tar.gz CMake-a85060439c8f9702dc4a82eaed1d3587d4aa8da0.tar.bz2 |
STYLE: Fixed line-too-long warning.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalKdevelopGenerator.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmGlobalKdevelopGenerator.cxx b/Source/cmGlobalKdevelopGenerator.cxx index d07fd60..554cc51 100644 --- a/Source/cmGlobalKdevelopGenerator.cxx +++ b/Source/cmGlobalKdevelopGenerator.cxx @@ -176,8 +176,9 @@ bool cmGlobalKdevelopGenerator files.insert(tmp); // check if there's a matching header around - for( std::vector<std::string>::const_iterator ext = makefile->GetHeaderExtensions().begin(); - ext != makefile->GetHeaderExtensions().end(); ++ext ) + for(std::vector<std::string>::const_iterator + ext = makefile->GetHeaderExtensions().begin(); + ext != makefile->GetHeaderExtensions().end(); ++ext) { std::string hname=headerBasename; hname += "."; |