From: Christian Biesinger Date: Tue, 5 Nov 2019 20:52:59 +0000 (-0600) Subject: Fix ARI warning in symtab.h X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ade7beeae467e81b809fc124d8bfc2f3c4a8c8ab;p=binutils-gdb.git Fix ARI warning in symtab.h gdb/ChangeLog: 2019-11-05 Christian Biesinger * symtab.h (gdb_static_assert): Put && operator at the beginning of the line instead of the end. Change-Id: I6d05c2f5e46c3f317ba97458509b2da9fd03464b --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 41daef6af43..efa66ee77df 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2019-11-05 Christian Biesinger + + * symtab.h (gdb_static_assert): Put && operator at the beginning + of the line instead of the end. + 2019-11-04 Christian Biesinger * psympriv.h: Add static_asserts for sizeof (general_symbol_info) diff --git a/gdb/symtab.h b/gdb/symtab.h index 83b75d1647a..111a0f924d8 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -450,8 +450,8 @@ struct general_symbol_info makes sure the size doesn't change accidentally. Be careful when purposely increasing the size. */ gdb_static_assert ((sizeof (void *) == 8 && sizeof (general_symbol_info) == 32) - || (sizeof (void *) == 4 && - sizeof (general_symbol_info) == 20)); + || (sizeof (void *) == 4 + && sizeof (general_symbol_info) == 20)); extern void symbol_set_demangled_name (struct general_symbol_info *, const char *,