bug-bison
[Top][All Lists]
Advanced

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

Re: bison-3.2 released [stable]


From: Akim Demaille
Subject: Re: bison-3.2 released [stable]
Date: Tue, 30 Oct 2018 07:02:24 +0100


> Le 29 oct. 2018 à 22:52, Hans Åberg <address@hidden> a écrit :
> 
> 
>> On 29 Oct 2018, at 21:33, Akim Demaille <address@hidden> wrote:
>> 
>> We are very happy to announce the release of Bison 3.2!
> 
> Actually two warnings on make with MacOS inhouse clang, the obstack one same 
> as with 3.1 :-), and one with the bitset. All tests passed though.

Thanks, I installed this.

commit 5d07f4f726de562778ab358d4bdf4fe8bae517bb
Author: Akim Demaille <address@hidden>
Date:   Tue Oct 30 07:00:34 2018 +0100

    bitset: fix warning
    
    Reported by Hans Åberg.
    http://lists.gnu.org/archive/html/bug-bison/2018-10/msg00047.html
    
    * lib/bitset.c (bitset_count_): here.

diff --git a/lib/bitset.c b/lib/bitset.c
index f8249b8c..32521377 100644
--- a/lib/bitset.c
+++ b/lib/bitset.c
@@ -353,7 +353,7 @@ bitset_count_ (bitset src)
   {
     bitset_bindex next = 0;
     bitset_bindex num;
-    while (num = bitset_list (src, list, BITSET_LIST_SIZE, &next))
+    while ((num = bitset_list (src, list, BITSET_LIST_SIZE, &next)))
       count += num;
   }
 




reply via email to

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