]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - lexer.h
serpate line travis-ci build url for notifications
[xonotic/gmqcc.git] / lexer.h
diff --git a/lexer.h b/lexer.h
index 919dbec1d10078a7c2a449701e34251cc42ad5fe..71ff198eed024b66c1932830d26148cd45e0d514 100644 (file)
--- a/lexer.h
+++ b/lexer.h
@@ -99,7 +99,7 @@ typedef struct {
     int   value;
 } frame_macro;
 
-typedef struct {
+typedef struct lex_file_s {
     FILE   *file;
     const char *open_string;
     size_t      open_string_length;
@@ -250,6 +250,9 @@ static const oper_info fte_operators[] = {
     { "+",   2, opid1('+'),         ASSOC_LEFT,  12, 0 },
     { "-",   2, opid1('-'),         ASSOC_LEFT,  12, 0 },
 
+    { "<<",  2, opid2('<','<'),     ASSOC_LEFT,  11, 0 },
+    { ">>",  2, opid2('>','>'),     ASSOC_LEFT,  11, 0 },
+
     { "<",   2, opid1('<'),         ASSOC_LEFT,  10, 0 },
     { ">",   2, opid1('>'),         ASSOC_LEFT,  10, 0 },
     { "<=",  2, opid2('<','='),     ASSOC_LEFT,  10, 0 },