diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-05-14 15:23:37 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-05-14 15:23:37 (GMT) |
commit | e4b5de6377bf144fadb7760efc3748f227807c25 (patch) | |
tree | 3fe22fd91af8f46f5cf475c99dfe533fa8a002d5 /Source/cmTarget.cxx | |
parent | 3aa23ce6ebb4df16428ef5619958abaa3d9710dc (diff) | |
download | CMake-e4b5de6377bf144fadb7760efc3748f227807c25.zip CMake-e4b5de6377bf144fadb7760efc3748f227807c25.tar.gz CMake-e4b5de6377bf144fadb7760efc3748f227807c25.tar.bz2 |
STYLE: fix line lengths
Alex
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index eb1768e..a97396f 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -410,15 +410,17 @@ void cmTarget::SetMakefile(cmMakefile* mf) void -cmTarget::CheckForTargetsAsCommand(const std::vector<cmCustomCommand>& commands) +cmTarget +::CheckForTargetsAsCommand(const std::vector<cmCustomCommand>& commands) { for ( std::vector<cmCustomCommand>::const_iterator cli = commands.begin(); cli != commands.end(); ++cli ) { - for(cmCustomCommandLines::const_iterator cit=cli->GetCommandLines().begin(); - cit!=cli->GetCommandLines().end(); - ++cit ) + for(cmCustomCommandLines::const_iterator cit = + cli->GetCommandLines().begin(); + cit!=cli->GetCommandLines().end(); + ++cit ) { std::string command = *cit->begin(); // see if we can find a target with this name |