diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2024-04-23 09:23:01 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2024-04-23 11:26:14 -0400 |
commit | cbf58b22f76b25d4528c08941fcc380d03ec34e2 (patch) | |
tree | 26366c8ef87886adc27f42b1edf7a1a731e9b616 | |
parent | dcff5e80e6672ad09c413ad2a3003de01b91ad6b (diff) | |
download | fsf-binutils-gdb-cbf58b22f76b25d4528c08941fcc380d03ec34e2.zip fsf-binutils-gdb-cbf58b22f76b25d4528c08941fcc380d03ec34e2.tar.gz fsf-binutils-gdb-cbf58b22f76b25d4528c08941fcc380d03ec34e2.tar.bz2 |
gdb: remove enum precision_type
It is unused.
Change-Id: Ic49a3ef03c21b209594cd567ae80b5441606bef6
Approved-By: Tom Tromey <tom@tromey.com>
-rw-r--r-- | gdb/defs.h | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -136,13 +136,6 @@ static_assert (nr_languages <= (1 << LANGUAGE_BITS)); /* The number of bytes needed to represent all languages. */ #define LANGUAGE_BYTES ((LANGUAGE_BITS + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT) -enum precision_type - { - single_precision, - double_precision, - unspecified_precision - }; - /* * A generic, not quite boolean, enumeration. This is used for set/show commands in which the options are on/off/automatic. */ enum auto_boolean |