Changes in uspace/app/sbi/src/stree_t.h [23de644:37f527b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/stree_t.h
r23de644 r37f527b 30 30 #define STREE_T_H_ 31 31 32 #include "bigint_t.h"33 32 #include "list_t.h" 34 33 #include "builtin_t.h" … … 55 54 56 55 typedef struct { 57 bigint_t value;56 int value; 58 57 } stree_lit_int_t; 59 58 … … 90 89 bo_lt_equal, 91 90 bo_gt_equal, 92 bo_plus, 93 bo_minus, 94 bo_mult 91 bo_plus 95 92 } binop_class_t; 96 93 97 94 /** Unary operation class */ 98 95 typedef enum { 99 uo_plus, 100 uo_minus, 96 uo_plus 101 97 } unop_class_t; 102 98 … … 113 109 typedef struct { 114 110 /** Operation class */ 115 unop_class_t uc;111 unop_class_t oc; 116 112 117 113 /** Argument */
Note:
See TracChangeset
for help on using the changeset viewer.