aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/pt.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2007-08-24 01:27:34 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2007-08-24 01:27:34 +0200
commit97dc8e5b5775cbb4aba4a7d7456844c15ad5d6b0 (patch)
tree678f401110fa2b1d462caa8ea4f40e088161b2d8 /gcc/cp/pt.c
parent9b21a3805360cf92d94c3767743f85f992f8293d (diff)
downloadgcc-97dc8e5b5775cbb4aba4a7d7456844c15ad5d6b0.zip
gcc-97dc8e5b5775cbb4aba4a7d7456844c15ad5d6b0.tar.gz
gcc-97dc8e5b5775cbb4aba4a7d7456844c15ad5d6b0.tar.bz2
re PR c++/32898 (Definition of variable N::i outside namespace N not rejected)
PR c++/32898 * name-lookup.c (set_decl_namespace): lookup_qualified_name failure is error_mark_node rather than NULL_TREE. * pt.c (check_explicit_specialization): Likewise. * g++.dg/lookup/ns3.C: New test. From-SVN: r127749
Diffstat (limited to 'gcc/cp/pt.c')
-rw-r--r--gcc/cp/pt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c
index b4a9b68..2594e7d 100644
--- a/gcc/cp/pt.c
+++ b/gcc/cp/pt.c
@@ -1980,7 +1980,7 @@ check_explicit_specialization (tree declarator,
context. */
fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
false, true);
- if (!fns || !is_overloaded_fn (fns))
+ if (fns == error_mark_node || !is_overloaded_fn (fns))
{
error ("%qD is not a template function", dname);
fns = error_mark_node;
@@ -2215,6 +2215,8 @@ check_explicit_specialization (tree declarator,
/* This specialization has the same linkage and visibility as
the function template it specializes. */
TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
+ if (! TREE_PUBLIC (decl) && DECL_INTERFACE_KNOWN (tmpl_func))
+ DECL_INTERFACE_KNOWN (decl) = 1;
DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
{