Bison News
----------
+Changes in version 2.1b:
+
+* %name-prefix changes the namespace name in C++ outputs.
+
+* The C++ parsers export their token_type.
+
Changes in version 2.1a, 2006-02-13:
* Bison now allows multiple %union declarations, and concatenates
their contents together.
* New warning: unused values
- Typed right-hand side symbols whose values are not used are reported,
- if the associated types have destructors. For instance:
+ Right-hand side symbols whose values are not used are reported,
+ if the symbols have destructors. For instance:
exp: exp "?" exp ":" exp { $1 ? $1 : $3; }
| exp "+" exp