diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-02 08:05:45 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-02 08:05:45 +0000 |
commit | e3ff39a10b93b1b6d4fa9fe12a2f5c3490937a87 (patch) | |
tree | 327fd8707268cc1943c8a1da483dc0412da3e575 /gcc/cp/lex.c | |
parent | b99198aa7d41172cfa94c586bb94456e7577d97d (diff) | |
download | gcc-e3ff39a10b93b1b6d4fa9fe12a2f5c3490937a87.tar.gz |
* c-lex.c (init_c_lex): Update cpp_start_read call.
(cb_ident): Update for new callback prototype.
(cb_def_pragma): Update for new cpp_get_token prototype.
(c_lex): Similarly. Use cpp_get_line.
* c-parse.in (finish_parse): Update for new cpp_finish
prototype.
* cp/lex.c (finish_parse): Similarly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37201 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/lex.c')
-rw-r--r-- | gcc/cp/lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index cf6a9e33f19..e5cdbf1c402 100644 --- a/gcc/cp/lex.c +++ b/gcc/cp/lex.c @@ -775,7 +775,7 @@ void finish_parse () { #if USE_CPPLIB - cpp_finish (&parse_in, 0 /* no printer */); + cpp_finish (&parse_in); errorcount += parse_in.errors; #else fclose (finput); |