diff options
author | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-01-11 04:18:25 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-01-11 04:18:25 +0000 |
commit | 2db7017d94e602fde0eec37a9bba965e41af80c8 (patch) | |
tree | 41ac5e245200cabb955d2e13d05e7bea543e65b7 | |
parent | 9d4c0187c6805870fd437f4973bbf51d1ca064ea (diff) | |
download | gcc-2db7017d94e602fde0eec37a9bba965e41af80c8.zip gcc-2db7017d94e602fde0eec37a9bba965e41af80c8.tar.gz gcc-2db7017d94e602fde0eec37a9bba965e41af80c8.tar.bz2 |
Fix typos in previous change
From-SVN: r31317
-rw-r--r-- | gcc/cp/class.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cp/class.c b/gcc/cp/class.c index ddcd17f..ad504d0 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -138,14 +138,14 @@ static void layout_class_type PROTO((tree, int *, int *, tree *, tree *)); static void fixup_pending_inline PROTO((struct pending_inline *)); static void fixup_inline_methods PROTO((tree)); static void set_primary_base PROTO((tree, int, int *)); -static void dfs_propagate_binfo_offsets PROTO((tree, tree)); +static tree dfs_propagate_binfo_offsets PROTO((tree, void *)); static void propagate_binfo_offsets PROTO((tree, tree)); static void layout_basetypes PROTO((tree)); static void layout_virtual_bases PROTO((tree)); static void remove_base_field PROTO((tree, tree, tree *)); static void remove_base_fields PROTO((tree)); -static void dfs_set_offset_for_shared_vbases PROTO((tree, void *)); -static void dfs_set_offset_for_unshared_vbases PROTO((tree, void *)); +static tree dfs_set_offset_for_shared_vbases PROTO((tree, void *)); +static tree dfs_set_offset_for_unshared_vbases PROTO((tree, void *)); /* Variables shared between class.c and call.c. */ |