]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - exec.cpp
Use C++ naming for structures
[xonotic/gmqcc.git] / exec.cpp
index 8ec97e4302d38f7d5099fee6b0a9622bf565de74..5b1fe23505061d240c2cfa93342b1949ffe67d4d 100644 (file)
--- a/exec.cpp
+++ b/exec.cpp
@@ -633,10 +633,10 @@ const char *type_name[TYPE_COUNT] = {
     "noexpr"
 };
 
-typedef struct {
+struct qcvm_parameter {
     int         vtype;
     const char *value;
-} qcvm_parameter;
+};
 
 static qcvm_parameter *main_params = NULL;