Functions with empty (non-void) parameter list #87
Labels
area:compiler
Related to code compilation or type checking
area:standard-support
Related to the C standard support
kind:feature
New feature or request
status:help-wanted
Open for contributors
Functions defined in this way has special meaning in C:
This isn't the same as
void foo(void) {}
(which is a canonical empty parameter list).Cesium should support those according to the standard. Currently, we treat them the same as the functions with
(void)
parameter list.See possible
// TODO[#87]
in the code if you're looking to add this support.The text was updated successfully, but these errors were encountered: