doc: use C++ headers.

* doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
	headers.
This commit is contained in:
Akim Demaille
2009-05-07 23:18:44 +02:00
parent 601bdfabe2
commit b10dd689b6
2 changed files with 9 additions and 3 deletions

View File

@@ -8,6 +8,12 @@
tests: check token numbers. tests: check token numbers.
* tests/input.at (Numbered tokens): New. * tests/input.at (Numbered tokens): New.
2009-05-11 Akim Demaille <demaille@gostai.com>
doc: use C++ headers.
* doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
headers.
2009-05-04 Akim Demaille <demaille@gostai.com> 2009-05-04 Akim Demaille <demaille@gostai.com>
bison: catch bad symbol names. bison: catch bad symbol names.

View File

@@ -8735,8 +8735,8 @@ parser's to get the set of defined tokens.
@example @example
%@{ /* -*- C++ -*- */ %@{ /* -*- C++ -*- */
# include <cstdlib> # include <cstdlib>
# include <errno.h> # include <cerrno>
# include <limits.h> # include <climits>
# include <string> # include <string>
# include "calc++-driver.hh" # include "calc++-driver.hh"
# include "calc++-parser.hh" # include "calc++-parser.hh"