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
9c65eeca
Commit
9c65eeca
authored
Mar 23, 1998
by
Jason Merrill
Committed by
Jason Merrill
Mar 23, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pt.c (complete_template_args): Initialize skip properly.
From-SVN: r18791
parent
b3709d9b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
gcc/cp/ChangeLog
+2
-0
gcc/cp/pt.c
+3
-4
No files found.
gcc/cp/ChangeLog
View file @
9c65eeca
Mon Mar 23 12:24:37 1998 Jason Merrill <jason@yorick.cygnus.com>
* pt.c (complete_template_args): Initialize skip properly.
* decl.c (make_typename_type): Revert.
(make_implicit_typename): Remove.
(lookup_name_real): Don't call it. Call lookup_field if we see a
...
...
gcc/cp/pt.c
View file @
9c65eeca
...
...
@@ -411,10 +411,9 @@ complete_template_args (tmpl, extra_args, unbound_only)
new_args
=
make_tree_vec
(
depth
+
1
);
if
(
!
is_member_template
(
tmpl
))
/* If this isn't a member template, extra_args is for the innermost
template class, so skip over it. */
skip
=
1
;
/* If this isn't a member template, extra_args is for the innermost
template class, so skip over it. */
skip
=
(
!
is_member_template
(
tmpl
));
type
=
DECL_REAL_CONTEXT
(
tmpl
);
for
(
i
=
depth
;
i
;
type
=
TYPE_CONTEXT
(
type
))
...
...
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