diff options
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 |