]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - lexer.h
Use the _t consistency naming scheme. Also various cleanups.
[xonotic/gmqcc.git] / lexer.h
diff --git a/lexer.h b/lexer.h
index 0de0c8fd90d04dbf74b5acbfcd2e81196146879e..efbdd6490dc54061969a6a715af1c01b21fedd0f 100644 (file)
--- a/lexer.h
+++ b/lexer.h
@@ -30,7 +30,7 @@ struct token_s {
     char *value;
 
     union {
-        vector v;
+        vec3_t v;
         int    i;
         double f;
         int    t; /* type */
@@ -41,7 +41,7 @@ struct token_s {
     struct token_s *prev;
 #endif
 
-    lex_ctx ctx;
+    lex_ctx_t ctx;
 };
 
 #if 0