Skip to content

Commit

Permalink
Fixed an issue clang found with my code in Kumite. I am surpirsed my …
Browse files Browse the repository at this point in the history
…C# for each compiled.
  • Loading branch information
brandonmpetty committed Oct 19, 2018
1 parent f92236b commit 76462a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Demo/Kumite/Kumite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ void DisplayPerformance(const MetricUtils::Scores& scores)
<< setw(15) << "Time"
<< endl;

for each (auto score in scores)
for (auto score : scores)
{
cout << left
<< setw(15) << score.ID
Expand Down

0 comments on commit 76462a0

Please sign in to comment.