]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - CHANGES
initialize max_param_count to 1 so vararg functions don't try to create an accessor...
[xonotic/gmqcc.git] / CHANGES
diff --git a/CHANGES b/CHANGES
index 963044aedc8c24092235f431dd91f81dcb49539f..e147a0c8bc7d0ba59a29de4634a9c40e76177640 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -14,6 +14,13 @@ Release v0.2.4
         - Support for `static` variables in functions.
         - Support for labeled loops.
         - UTF-8 Support
+        - enum support: without enum-types
+          (ie no `typedef enum { } foo;`)
+        - Accessing vector components via the dot operator on all
+          expressions. Eg: (3 * v).y
+        - Type restricted variadict parameters:
+          ie: void print(string...);
+        - Accessing varargs from QC via: ...(index, type)
     * Compilation:
         - Various optimizations and progs-size reductions.
         - A new spell-checking algorithm tries to hint you at existing
@@ -24,6 +31,7 @@ Release v0.2.4
     * Commandline:
         - Support for making individual warnings an error
         - via -Werror-<warning>
+        - added --add-info
     * Testsuite:
         - Support for QCFLAGS to run tests with several additional
           flags.
@@ -46,7 +54,6 @@ Release v0.2.4
         - Support for `goto` with labels like in fteqcc.
         - `break` and `continue`.
         - Short circuit logic.
-        - `noreturn` keyword.
         - Support for translatable strings via _("str") like in
           fteqcc.
     * Compilation