Skip to content

Commit e7b95f8

Browse files
author
nathan
committed
[C++ PATCH] Using decls
https://gcc.gnu.org/ml/gcc-patches/2019-05/msg01396.html gcc/cp/ * name-lookup.h (struct cp_binding_level): Drop usings field. (finish_namespace_using_decl, finish_local_using_decl): Replace with ... (finish_nonmember_using_decl): ... this. * name-lookup.c (push_using_decl_1, push_using_decl): (do_nonmember_using_decl): ... here. Add INSERT_P arg. Reimplement. (validate_nonmember_using_decl, finish_namespace_using_decl) (finish_local_using_decl): Replace with ... (finish_nonmember_using_decl): ... this. Drop DECL parm. * parser.c (cp_parser_using_declaration): Don't do lookup here. * pt.c (tsubst_expr): Do not do using decl lookup here. gcc/testsuite/ * g++.dg/lookup/using53.C: Adjust diagnostic. libcc1/ * libcp1plugin.cc (plugin_add_using_decl): Use finish_nonmember_using_decl. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@271467 138bc75d-0d04-0410-961f-82ee72b054a4
1 parent f6baa5a commit e7b95f8

File tree

9 files changed

+193
-259
lines changed

9 files changed

+193
-259
lines changed

gcc/cp/ChangeLog

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2019-05-21 Nathan Sidwell <[email protected]>
2+
3+
* name-lookup.h (struct cp_binding_level): Drop usings field.
4+
(finish_namespace_using_decl, finish_local_using_decl): Replace with ...
5+
(finish_nonmember_using_decl): ... this.
6+
* name-lookup.c (push_using_decl_1, push_using_decl):
7+
(do_nonmember_using_decl): ... here. Add INSERT_P arg. Reimplement.
8+
(validate_nonmember_using_decl, finish_namespace_using_decl)
9+
(finish_local_using_decl): Replace with ...
10+
(finish_nonmember_using_decl): ... this. Drop DECL parm.
11+
* parser.c (cp_parser_using_declaration): Don't do lookup here.
12+
* pt.c (tsubst_expr): Do not do using decl lookup here.
13+
114
2019-05-21 Eric Botcazou <[email protected]>
215

316
* decl2.c (cpp_check) <IS_ASSIGNMENT_OPERATOR>: New case.

0 commit comments

Comments
 (0)