diff options
Diffstat (limited to 'gcc/d/d-attribs.cc')
-rw-r--r-- | gcc/d/d-attribs.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/d/d-attribs.cc b/gcc/d/d-attribs.cc index 0f7ca10..77315dc 100644 --- a/gcc/d/d-attribs.cc +++ b/gcc/d/d-attribs.cc @@ -1,5 +1,5 @@ /* d-attribs.c -- D attributes handling. - Copyright (C) 2015-2024 Free Software Foundation, Inc. + Copyright (C) 2015-2025 Free Software Foundation, Inc. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -440,7 +440,7 @@ apply_user_attributes (Dsymbol *sym, tree node) if (TYPE_P (node) && !COMPLETE_TYPE_P (node)) attr_flags |= ATTR_FLAG_TYPE_IN_PLACE; - Expressions *attrs = uda->getAttributes (); + Expressions *attrs = dmd::getAttributes (uda); decl_attributes (&node, build_attributes (attrs), attr_flags); input_location = saved_location; |