You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code will trigger a parse error on the current release / HEAD:
vec3[3] verts =vec3[]( /* whatever */ );
Here, the vec3[](…) is a function call, and the function identifier must be vec3[]. Currently, it’ll fail to parse.
This is not easy to fix because the function call parser is already defined in the postfix expression parser as an alternative. We have to be smart to fix that.
The text was updated successfully, but these errors were encountered:
The following code will trigger a parse error on the current release / HEAD:
Here, the
vec3[](…)
is a function call, and the function identifier must bevec3[]
. Currently, it’ll fail to parse.This is not easy to fix because the function call parser is already defined in the postfix expression parser as an alternative. We have to be smart to fix that.
The text was updated successfully, but these errors were encountered: