Re: gephex interface definition language
Georg Seidel <[email protected]>
| Newsgroups | gmane.comp.video.gephex.devel |
|---|---|
| Message-ID | <[email protected]> |
I have a small addition to the grammar rules for types.
I extended gidlc to understand const pointers to basic types.
The rule was:
> TYPE -> TYPE_NAME
> | BUILTIN_TYPE
> | "ptr" BUILTIN_TYPE
and now is:
TYPE -> TYPE_NAME
| BUILTIN_TYPE
| "ptr" BUILTIN_TYPE
| "const" "ptr" BUILTIN_TYPE
Georg