summaryrefslogtreecommitdiff
path: root/gdb/symtab.h
diff options
context:
space:
mode:
authorChristian Biesinger <cbiesinger@google.com>2019-11-05 14:52:59 -0600
committerChristian Biesinger <cbiesinger@google.com>2019-11-05 14:54:27 -0600
commitade7beeae467e81b809fc124d8bfc2f3c4a8c8ab (patch)
tree608713bcfe7a908b83d5ddc9602fa6d439993288 /gdb/symtab.h
parent3a70f7e8e3e480d1debf40b8d71d5444e32d69df (diff)
Fix ARI warning in symtab.h
gdb/ChangeLog: 2019-11-05 Christian Biesinger <cbiesinger@google.com> * symtab.h (gdb_static_assert): Put && operator at the beginning of the line instead of the end. Change-Id: I6d05c2f5e46c3f317ba97458509b2da9fd03464b
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r--gdb/symtab.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h
index 83b75d1647..111a0f924d 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 *,