chore: add NONE operator

This commit is contained in:
TopchetoEU 2022-10-17 22:39:59 +03:00
parent ef79208438
commit 328788d320
2 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,8 @@
namespace ppc::comp::tree {
enum operator_t {
NONE,
LESS_THAN,
GREATER_THAN,
LESS_THAN_EQUALS,

View File

@ -7,6 +7,7 @@ using namespace std::string_literals;
std::vector<std::string> operators = {
"(none)",
"<", ">", "<=", ">=", "==", "!=", "&&", "||",
"<<", ">>", "^", "&", "|", "!", "~",
"++", "--",