[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Tinycc-devel] too many basic types error
From: |
Daniel Glöckner |
Subject: |
Re: [Tinycc-devel] too many basic types error |
Date: |
Mon, 15 Sep 2008 23:42:38 +0200 |
User-agent: |
Mutt/1.4.2.1i |
On Mon, Sep 15, 2008 at 02:23:45PM -0700, Josh Goldstein wrote:
> /*
> struct var_value
> {
> int var_type;
> union var_data my_data;
> }
> */
>
> If I uncomment the commented part, I get the error. Is there a limit on the
> number of structs or unions you can define?
Yes, but it is VERY high.
You just forgot the ; after the }
Daniel