Fixed a warning message.

This commit is contained in:
yhirose 2015-07-30 18:47:13 -04:00
parent d7e8cf03f3
commit dba1c42826

View File

@ -244,6 +244,7 @@ private:
case "<"_: return lval < rval;
case ">="_: return lval >= rval;
case ">"_: return lval > rval;
default: throw logic_error("invalid operator");
}
}