diff options
author | Zack Weinberg <zack@rabi.phys.columbia.edu> | 1998-12-07 14:20:55 +0000 |
---|---|---|
committer | Dave Brolley <brolley@gcc.gnu.org> | 1998-12-07 09:20:55 -0500 |
commit | 3a5ac29d20f6f97f0df1f49b8494b64f3e034266 (patch) | |
tree | 583dd57f393256473f688628a97ba8fa63dc9662 | |
parent | c50bca0894c554662fbd42728bd118d7b9f41b49 (diff) | |
download | gcc-3a5ac29d20f6f97f0df1f49b8494b64f3e034266.zip gcc-3a5ac29d20f6f97f0df1f49b8494b64f3e034266.tar.gz gcc-3a5ac29d20f6f97f0df1f49b8494b64f3e034266.tar.bz2 |
decl2.c: s/data/opts/ when initializing cpp_reader structure.
1998-12-07 Zack Weinberg <zack@rabi.phys.columbia.edu>
* cp/decl2.c: s/data/opts/ when initializing cpp_reader
structure.
From-SVN: r24155
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/decl2.c | 2 |
2 files changed, 6 insertions, 1 deletions
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 <zack@rabi.phys.columbia.edu> + + * cp/decl2.c: s/data/opts/ when initializing cpp_reader + structure. + 1998-12-07 Jason Merrill <jason@yorick.cygnus.com> * 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; } |