mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 00:33:09 +00:00
Fix an off-by-one bug in ucioption.cpp
Harmless but anyhow wrong. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
4554d8b2ac
commit
20a6f99cdb
1 changed files with 2 additions and 2 deletions
|
@ -81,9 +81,9 @@ OptionsMap::OptionsMap() {
|
||||||
/// order (the idx field) and in the format defined by the UCI protocol.
|
/// order (the idx field) and in the format defined by the UCI protocol.
|
||||||
std::ostream& operator<<(std::ostream& os, const OptionsMap& om) {
|
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)
|
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;
|
const UCIOption& o = it->second;
|
||||||
os << "\noption name " << it->first << " type " << o.type;
|
os << "\noption name " << it->first << " type " << o.type;
|
||||||
|
|
Loading…
Add table
Reference in a new issue