diff options
Diffstat (limited to 'gcc/cp/pt.c')
| -rw-r--r-- | gcc/cp/pt.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index c171f31b083..b514cc14301 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -4576,7 +4576,7 @@ lookup_template_class (tree d1, { found = xref_tag_from_type (TREE_TYPE (template), DECL_NAME (template), - /*globalize=*/1); + /*tag_scope=*/ts_global); POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found); } @@ -5788,7 +5788,8 @@ instantiate_class_template (tree type) classes. */ push_nested_namespace (ns); friend_type = - xref_tag_from_type (friend_type, NULL_TREE, 1); + xref_tag_from_type (friend_type, NULL_TREE, + /*tag_scope=*/ts_global); pop_nested_namespace (ns); } |

