| commit | 2bfed4e87257a8d6433edb145326da31816d19c1 | [log] [tgz] |
|---|---|---|
| author | Andrew Burgess <aburgess@redhat.com> | Thu Jun 23 12:19:52 2022 +0100 |
| committer | Andrew Burgess <aburgess@redhat.com> | Sun Oct 02 11:58:28 2022 +0100 |
| tree | c72f4434844b46e2aacd61362b19eb83804c62aa | |
| parent | d4ce49b7ac077a9882d6a5e689e260300045ca88 [diff] |
gdb: make gdb_disassembly_flag unsigned In a later commit I want to use operator~ on a gdb_disassembly_flag flag value. This is currently not possible as gdb_disassembly_flag is, by default, signed. This commit just makes this enum unsigned. There should be no user visible changes after this commit.