mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Set void alignment to 1
qcc allowed void variables.
This commit is contained in:
parent
c9fca9c98a
commit
2a39208069
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@
|
|||
|
||||
// simple types. function types are dynamically allocated
|
||||
type_t type_invalid = { ev_invalid, "invalid" };
|
||||
type_t type_void = { ev_void, "void" };
|
||||
type_t type_void = { ev_void, "void", 1 };
|
||||
type_t type_string = { ev_string, "string", 1 };
|
||||
type_t type_float = { ev_float, "float", 1 };
|
||||
type_t type_vector = { ev_vector, "vector", 1 };
|
||||
|
|
Loading…
Reference in a new issue