mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-12-22 20:05:31 +00:00
Fixed a warning message.
This commit is contained in:
parent
d7e8cf03f3
commit
dba1c42826
@ -244,6 +244,7 @@ private:
|
|||||||
case "<"_: return lval < rval;
|
case "<"_: return lval < rval;
|
||||||
case ">="_: return lval >= rval;
|
case ">="_: return lval >= rval;
|
||||||
case ">"_: return lval > rval;
|
case ">"_: return lval > rval;
|
||||||
|
default: throw logic_error("invalid operator");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user