From 5a9d893105afee655fb9f0fdd551d4b2b096100b Mon Sep 17 00:00:00 2001 From: brolley Date: Mon, 7 Dec 1998 14:20:55 +0000 Subject: [PATCH] 1998-12-07 Zack Weinberg * cp/decl2.c: s/data/opts/ when initializing cpp_reader structure. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24155 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/decl2.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 25e5303..a62d80b 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +1998-12-07 Zack Weinberg + + * cp/decl2.c: s/data/opts/ when initializing cpp_reader + structure. + 1998-12-07 Jason Merrill * decl.c (build_typename_type): Set DECL_ARTIFICIAL. diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index 7f32cf8..9fc24fe 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -526,7 +526,7 @@ lang_decode_option (argc, argv) if (! cpp_initialized) { cpp_reader_init (&parse_in); - parse_in.data = &parse_options; + parse_in.opts = &parse_options; cpp_options_init (&parse_options); cpp_initialized = 1; } -- 2.7.4