Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
95480b77
Commit
95480b77
authored
May 17, 1998
by
Martin v. Löwis
Committed by
Jason Merrill
May 17, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* class.c (finish_struct_1): Use OVL_CURRENT in error message.
From-SVN: r19829
parent
7e717196
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/cp/ChangeLog
+4
-0
gcc/cp/class.c
+2
-2
No files found.
gcc/cp/ChangeLog
View file @
95480b77
Mon May 18 01:43:01 1998 Martin v. Loewis <loewis@informatik.hu-berlin.de>
* class.c (finish_struct_1): Use OVL_CURRENT in error message.
Mon May 18 01:24:08 1998 Jeffrey A Law (law@cygnus.com)
* Makefile.in (program_transform_name, objdir): Define.
...
...
gcc/cp/class.c
View file @
95480b77
...
...
@@ -3710,7 +3710,7 @@ finish_struct_1 (t, warn_anon)
{
cp_error
(
"cannot adjust access to `%#D' in `%#T'"
,
fdecl
,
t
);
cp_error_at
(
" because of local method `%#D' with same name"
,
TREE_VEC_ELT
(
method_vec
,
i
));
OVL_CURRENT
(
TREE_VEC_ELT
(
method_vec
,
i
)
));
fdecl
=
NULL_TREE
;
break
;
}
...
...
@@ -3827,7 +3827,7 @@ finish_struct_1 (t, warn_anon)
{
cp_error_at
(
"data member `%#D' conflicts with"
,
x
);
cp_error_at
(
"function member `%#D'"
,
TREE_VEC_ELT
(
method_vec
,
i
));
OVL_CURRENT
(
TREE_VEC_ELT
(
method_vec
,
i
)
));
break
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment