diff options
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 677d96f..eb1768e 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -416,7 +416,7 @@ cmTarget::CheckForTargetsAsCommand(const std::vector<cmCustomCommand>& commands) cli != commands.end(); ++cli ) { - for ( cmCustomCommandLines::const_iterator cit=cli->GetCommandLines().begin(); + for(cmCustomCommandLines::const_iterator cit=cli->GetCommandLines().begin(); cit!=cli->GetCommandLines().end(); ++cit ) { @@ -584,7 +584,9 @@ void cmTarget::TraceVSDependencies(std::string projFile, outsf->GetCustomCommand()->AppendDepends(automaticTargetDepends); // add its dependencies to the list to check - for (unsigned int i = 0; i < outsf->GetCustomCommand()->GetDepends().size(); ++i) + for (unsigned int i = 0; + i < outsf->GetCustomCommand()->GetDepends().size(); + ++i) { const std::string& fullName = outsf->GetCustomCommand()->GetDepends()[i]; |