diff options
author | Tom Tromey <tom@tromey.com> | 2023-10-18 20:44:11 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-11-29 14:29:44 -0700 |
commit | 69f6730df3d18216126283864246eaf538bdf91d (patch) | |
tree | e17002e214e8d6d2ea423575e29b56f90005b778 /gdb/alpha-tdep.c | |
parent | d02f31bb130fd54fa2891cbc28fbc01f603eca6c (diff) | |
download | gdb-69f6730df3d18216126283864246eaf538bdf91d.zip gdb-69f6730df3d18216126283864246eaf538bdf91d.tar.gz gdb-69f6730df3d18216126283864246eaf538bdf91d.tar.bz2 |
Remove gdb_static_assert
C++17 makes the second parameter to static_assert optional, so we can
remove gdb_static_assert now.
Diffstat (limited to 'gdb/alpha-tdep.c')
-rw-r--r-- | gdb/alpha-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/alpha-tdep.c b/gdb/alpha-tdep.c index 9fb9735..0d3a495 100644 --- a/gdb/alpha-tdep.c +++ b/gdb/alpha-tdep.c @@ -98,7 +98,7 @@ alpha_register_name (struct gdbarch *gdbarch, int regno) "pc", "", "unique" }; - gdb_static_assert (ALPHA_NUM_REGS == ARRAY_SIZE (register_names)); + static_assert (ALPHA_NUM_REGS == ARRAY_SIZE (register_names)); return register_names[regno]; } |