diff options
Diffstat (limited to 'gdb/inline-frame.h')
-rw-r--r-- | gdb/inline-frame.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/inline-frame.h b/gdb/inline-frame.h index 3ddc9cf..031caa7 100644 --- a/gdb/inline-frame.h +++ b/gdb/inline-frame.h @@ -1,6 +1,6 @@ /* Definitions for inline frame support. - Copyright (C) 2008-2024 Free Software Foundation, Inc. + Copyright (C) 2008-2025 Free Software Foundation, Inc. This file is part of GDB. @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#if !defined (INLINE_FRAME_H) -#define INLINE_FRAME_H 1 +#ifndef GDB_INLINE_FRAME_H +#define GDB_INLINE_FRAME_H class frame_info_ptr; struct frame_unwind; @@ -27,7 +27,7 @@ struct process_stratum_target; /* The inline frame unwinder. */ -extern const struct frame_unwind inline_frame_unwind; +extern const struct frame_unwind_legacy inline_frame_unwind; /* Skip all inlined functions whose call sites are at the current PC. @@ -70,4 +70,4 @@ const symbol *inline_skipped_symbol (thread_info *thread); int frame_inlined_callees (const frame_info_ptr &this_frame); -#endif /* !defined (INLINE_FRAME_H) */ +#endif /* GDB_INLINE_FRAME_H */ |