diff --git a/NEWS b/NEWS index 6f051b0f..2e38038e 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,11 @@ GNU Bison NEWS * Noteworthy changes in release ?.? (????-??-??) [?] +** Bug fixes + +*** C++ with Variants (lalr1.cc) + + Fix a compiler warning when no %destructor use $$. * Noteworthy changes in release 3.0.3 (2015-01-15) [stable] diff --git a/data/c++.m4 b/data/c++.m4 index 4321c305..d176e1a2 100644 --- a/data/c++.m4 +++ b/data/c++.m4 @@ -347,6 +347,7 @@ m4_define([b4_public_types_define], // User destructor. symbol_number_type yytype = this->type_get (); basic_symbol& yysym = *this; + (void) yysym; switch (yytype) { ]b4_symbol_foreach([b4_symbol_destructor])dnl