X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=6b066f221a955eb3d58b908d7a55334b72c6f651;hp=8ea4c5f62b3f2d45a47b1a33dbc0a624a318c9d9;hb=20a6f99cdb87d5877d490abceb795f7e68c5b4a6;hpb=4554d8b2ac1ad260c3f7123b2a7d3a3385fa8306 diff --git a/src/ucioption.cpp b/src/ucioption.cpp index 8ea4c5f6..6b066f22 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -81,9 +81,9 @@ OptionsMap::OptionsMap() { /// order (the idx field) and in the format defined by the UCI protocol. std::ostream& operator<<(std::ostream& os, const OptionsMap& om) { - for (size_t i = 0; i <= om.size(); i++) + for (size_t idx = 0; idx < om.size(); idx++) for (OptionsMap::const_iterator it = om.begin(); it != om.end(); ++it) - if (it->second.idx == i) + if (it->second.idx == idx) { const UCIOption& o = it->second; os << "\noption name " << it->first << " type " << o.type;