mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-14 14:53:03 +00:00
* reader.c (copy_string): Declared `static inline'. No problems
with inline, since it is checked by configure. (copy_comment): Likewise.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2000-03-17 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
|
* reader.c (copy_string): Declared `static inline'. No problems
|
||||||
|
with inline, since it is checked by configure.
|
||||||
|
(copy_comment): Likewise.
|
||||||
|
|
||||||
2000-03-17 Akim Demaille <akim@epita.fr>
|
2000-03-17 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
* reader.c (packsymbols): Formatting changes.
|
* reader.c (packsymbols): Formatting changes.
|
||||||
|
|||||||
@@ -992,7 +992,7 @@ get_type_name (int n, symbol_list *rule)
|
|||||||
/* Dump the string from FINPUT to FOUTPUT. MATCH is the delimiter of
|
/* Dump the string from FINPUT to FOUTPUT. MATCH is the delimiter of
|
||||||
the string (either ' or "). */
|
the string (either ' or "). */
|
||||||
|
|
||||||
void
|
static inline void
|
||||||
copy_string (FILE *finput, FILE *foutput, int match)
|
copy_string (FILE *finput, FILE *foutput, int match)
|
||||||
{
|
{
|
||||||
int c;
|
int c;
|
||||||
@@ -1034,7 +1034,7 @@ copy_string (FILE *finput, FILE *foutput, int match)
|
|||||||
/* Dump the comment from FINPUT to FOUTPUT. C is either `*' or `/',
|
/* Dump the comment from FINPUT to FOUTPUT. C is either `*' or `/',
|
||||||
depending upon the type of comments used. */
|
depending upon the type of comments used. */
|
||||||
|
|
||||||
void
|
static inline void
|
||||||
copy_comment (FILE *finput, FILE *foutput, int c)
|
copy_comment (FILE *finput, FILE *foutput, int c)
|
||||||
{
|
{
|
||||||
int cplus_comment;
|
int cplus_comment;
|
||||||
|
|||||||
Reference in New Issue
Block a user