diff options
Diffstat (limited to 'gcc/cp/decl.c')
-rw-r--r-- | gcc/cp/decl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 5f370e6..2de4e16 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -2002,6 +2002,9 @@ duplicate_decls (tree newdecl, tree olddecl, bool hiding, bool was_hidden) || DECL_IMPLICIT_TYPEDEF_P (newdecl))) return NULL_TREE; + if (DECL_TEMPLATE_PARM_P (olddecl) != DECL_TEMPLATE_PARM_P (newdecl)) + return NULL_TREE; + if (!validate_constexpr_redeclaration (olddecl, newdecl)) return error_mark_node; |