Commit 65813f56 by Neil Booth Committed by Neil Booth

* scan-decls.c (scan_decls): Fix typo.

From-SVN: r45628
parent 50410426
2001-09-15 Neil Booth <neil@daikokuya.demon.co.uk> 2001-09-15 Neil Booth <neil@daikokuya.demon.co.uk>
* scan-decls.c (scan_decls): Fix typo.
2001-09-15 Neil Booth <neil@daikokuya.demon.co.uk>
* cpphash.h (struct cpp_reader): Remove lexer_pos, directive_pos. * cpphash.h (struct cpp_reader): Remove lexer_pos, directive_pos.
Split mlstring_pos into mls_line and mls_col. Split mlstring_pos into mls_line and mls_col.
* cppinit.c (cpp_create_reader): Initialize line to 1. * cppinit.c (cpp_create_reader): Initialize line to 1.
......
...@@ -170,7 +170,7 @@ scan_decls (pfile, argc, argv) ...@@ -170,7 +170,7 @@ scan_decls (pfile, argc, argv)
|| token.type == CPP_ELLIPSIS) || token.type == CPP_ELLIPSIS)
have_arg_list = 1; have_arg_list = 1;
} }
recognized_function (&prev_id, token->line, recognized_function (&prev_id, token.line,
(saw_inline ? 'I' (saw_inline ? 'I'
: in_extern_C_brace || current_extern_C : in_extern_C_brace || current_extern_C
? 'F' : 'f'), have_arg_list); ? 'F' : 'f'), have_arg_list);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment