* iface/dve2/dve2.cc (convert_aps): Fix two typos while
parsing >= and >, mistakenly registered as <= and <.
This commit is contained in:
parent
6d213e5e4c
commit
ef976c93d0
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2011-03-10 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||
|
||||
* iface/dve2/dve2.cc (convert_aps): Fix two typos while
|
||||
parsing >= and >, mistakenly registered as <= and <.
|
||||
|
||||
2011-03-07 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||
|
||||
Remove the Nips interface.
|
||||
|
|
|
|||
|
|
@ -398,12 +398,12 @@ namespace spot
|
|||
case '>':
|
||||
if (s[1] == '=')
|
||||
{
|
||||
op = OP_LE;
|
||||
op = OP_GE;
|
||||
s += 2;
|
||||
}
|
||||
else
|
||||
{
|
||||
op = OP_LT;
|
||||
op = OP_GT;
|
||||
++s;
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue