ratpoison-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [RP] patches to make it compile with very old compilers


From: Bernhard R. Link
Subject: Re: [RP] patches to make it compile with very old compilers
Date: Mon, 20 Jul 2009 08:11:26 +0200
User-agent: Mutt/1.5.18 (2008-05-17)

* Matthias Kilian <address@hidden> [090719 09:47]:
> For arrays of unspecified length (mentioned in an earlier mail,
> IIRC): I think something like
>
>       struct foo {
>               int bar;
>               char baz[];
>       };
>
> can easily be replaced by
>
>       struct foo {
>               int bar;
>               char baz[0];
>       };
>
> without semantic changes (i.e. sizeof (struct foo) is the same for
> both variants).

Note that this is an gcc extension. So while it will make it work
with older gcc compilers, it might cause to break with other compilers,
even other up-to-date ones.

Hochachtungsvoll,
        Bernhard R. Link




reply via email to

[Prev in Thread] Current Thread [Next in Thread]