Corrected a small bug (!): the -C=value was not processed correctly
as somebody forgot one character when counting up to ... 3 :-)))
This commit is contained in:
parent
109fc551ab
commit
9af974070a
1 changed files with 1 additions and 1 deletions
|
|
@ -179,7 +179,7 @@ void eoParser::readFrom(istream& is)
|
||||||
}
|
}
|
||||||
else // it should be a char
|
else // it should be a char
|
||||||
{
|
{
|
||||||
string value(str.begin() + 2, str.end());
|
string value(str.begin() + 3, str.end());
|
||||||
shortNameMap[str[1]] = value;
|
shortNameMap[str[1]] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue