bison-patches
[Top][All Lists]
Advanced

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

Re: [PATCH] variants: avoid type punning issue.


From: Théophile Ranquet
Subject: Re: [PATCH] variants: avoid type punning issue.
Date: Thu, 31 Jan 2013 21:51:24 +0100

2013/1/31 Akim Demaille <address@hidden>:
>> diff --git a/data/variant.hh b/data/variant.hh
>> index e2a537a..78aa876 100644
>> --- a/data/variant.hh
>> +++ b/data/variant.hh
>> @@ -143,7 +143,7 @@ m4_define([b4_variant_define],
>>      YYASSERT (tname == typeid (T).name ());
>>      YYASSERT (sizeof (T) <= S);])[
>>      {
>> -        void *dummy = buffer.raw;
>> +        void* dummy = buffer.raw;
>
> Actually it was right in the first place.  This is the style
> promoted by the GNU Coding Standards.

Oh? Well, I am of course aware of the GNU Coding Standards, but I saw
these lines a bit further down in the file, so I assumed we were not
following the standard there:

    /// Whether the content is built: if defined, the name of the stored type.
    const char* tname;])[

Shall I address the style discrepancy here?



reply via email to

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