2001-07-17 21:51:10 +00:00
|
|
|
o = todo
|
|
|
|
X = done
|
|
|
|
? = maybe but not likely
|
|
|
|
M = more testing
|
|
|
|
I = in progress
|
|
|
|
W = waiting on other work
|
|
|
|
|
2012-12-01 06:41:30 +00:00
|
|
|
X fix object files
|
2011-02-22 03:23:00 +00:00
|
|
|
M arrays in structures
|
|
|
|
M unnamed function parameters for prototypes/typdefs etc.
|
2012-12-01 06:41:30 +00:00
|
|
|
I optimizations (esp CSE)
|
|
|
|
I fix used/uninitialized warnings
|
|
|
|
o fix enums in switch statements (use tables (treat as int), check missing)
|
2011-02-22 03:23:00 +00:00
|
|
|
o arrays in entities
|
2012-12-01 06:41:30 +00:00
|
|
|
o optional arguments for functions (alternative to overloading)
|
|
|
|
vector(vector fwd, optional vector up) vectoangles = #51;
|
2011-02-22 03:23:00 +00:00
|
|
|
? try to reduce memory consumption
|
2012-12-01 06:41:30 +00:00
|
|
|
?? embedded nul characters in strings (why?)
|
|
|
|
?? "":"" string concatenation (parser issues) (why?)
|