Skip to content

Commit

Permalink
sync v1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Domain committed Apr 22, 2024
1 parent 1ab2473 commit 3b66f28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Code/Tools/FBuild/FBuildCore/Graph/ObjectListNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -271,12 271,12 @@ ObjectListNode::ObjectListNode()
// handle all targets in alias
const AliasNode * an = n->CastTo< AliasNode >();
const Dependencies & aliasNodeList = an->GetAliasedNodes();
const Dependencies::Iter end = aliasNodeList.End();
for ( Dependencies::Iter it = aliasNodeList.Begin();
auto end = aliasNodeList.End();
for ( auto it = aliasNodeList.Begin();
it != end;
it )
{
compilerInputUnity.EmplaceBack( it->GetNode() );
compilerInputUnity.Add( it->GetNode() );
}
}
else
Expand Down

0 comments on commit 3b66f28

Please sign in to comment.