Skip to content

Commit

Permalink
Fix for compilation with MinGW
Browse files Browse the repository at this point in the history
  • Loading branch information
375gnu committed Feb 19, 2020
1 parent 097c0d7 commit a78f09d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/celestia/winstarbrowser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ FindStars(const StarDatabase& stardb, Pred pred, int nStars)

// Move the best matching stars into the vector
finalStars->reserve(nStars);
for (StarSet::const_iterator iter = firstStars.begin();
for (typename StarSet::const_iterator iter = firstStars.begin();
iter != firstStars.end(); iter++)
{
finalStars->insert(finalStars->end(), *iter);
Expand Down

0 comments on commit a78f09d

Please sign in to comment.