Skip to content

Commit

Permalink
Merge pull request #89 from microsoft/user/tvandewalle/tsaFix
Browse files Browse the repository at this point in the history
[TSA bugs] Fix narrow/wide type comparison in loop condition
  • Loading branch information
vdwtanner authored May 2, 2024
2 parents ba766bc + 54a2958 commit be4b729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/9on12Resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ namespace D3D9on12
INEFFICIENT_UNBINDING_ARRAY_DELETION();
}

for (UINT i = 0; i < m_boundIndices.size(); i++)
for (size_t i = 0; i < m_boundIndices.size(); i++)
{
if (bindIndex == m_boundIndices[i])
{
Expand Down

0 comments on commit be4b729

Please sign in to comment.