chore: add NONE operator
This commit is contained in:
parent
ef79208438
commit
328788d320
@ -6,6 +6,8 @@
|
||||
|
||||
namespace ppc::comp::tree {
|
||||
enum operator_t {
|
||||
NONE,
|
||||
|
||||
LESS_THAN,
|
||||
GREATER_THAN,
|
||||
LESS_THAN_EQUALS,
|
||||
|
@ -7,6 +7,7 @@ using namespace std::string_literals;
|
||||
|
||||
|
||||
std::vector<std::string> operators = {
|
||||
"(none)",
|
||||
"<", ">", "<=", ">=", "==", "!=", "&&", "||",
|
||||
"<<", ">>", "^", "&", "|", "!", "~",
|
||||
"++", "--",
|
||||
|
Loading…
Reference in New Issue
Block a user