diff options
author | Tom Tromey <tromey@adacore.com> | 2019-11-27 11:38:56 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2019-11-27 11:38:56 -0700 |
commit | fad03f6e5b7cf88d86e41734b1c44c31daf2fc2b (patch) | |
tree | 2f34901a14f65d661e212a0089bb232c25de66ad /gdb/dwarf2read.h | |
parent | 43678b0afe412f6e920e1edd6d403068918ab259 (diff) | |
download | gdb-fad03f6e5b7cf88d86e41734b1c44c31daf2fc2b.zip gdb-fad03f6e5b7cf88d86e41734b1c44c31daf2fc2b.tar.gz gdb-fad03f6e5b7cf88d86e41734b1c44c31daf2fc2b.tar.bz2 |
Remove some unnecessary backslashes
I found a couple of unnecessary backslashes in gdb. This removes
them.
Offhand, I wonder whether this abstract_to_concrete thing could be
done some other way? This seems possibly expensive.
Anyway, tested by rebuilding. I'm going to check this in as obvious.
gdb/ChangeLog
2019-11-27 Tom Tromey <tromey@adacore.com>
* dwarf2read.h (struct dwarf2_per_objfile): Remove unnecessary
backslashes.
* cp-support.c: Remove unnecessary backslashes.
Change-Id: I956c91ae24407eeafec8a731545b45f5222e6a9d
Diffstat (limited to 'gdb/dwarf2read.h')
-rw-r--r-- | gdb/dwarf2read.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/dwarf2read.h b/gdb/dwarf2read.h index 53fc7f4..140bbed 100644 --- a/gdb/dwarf2read.h +++ b/gdb/dwarf2read.h @@ -259,8 +259,8 @@ public: /* Mapping from abstract origin DIE to concrete DIEs that reference it as DW_AT_abstract_origin. */ - std::unordered_map<sect_offset, std::vector<sect_offset>, \ - gdb::hash_enum<sect_offset>> \ + std::unordered_map<sect_offset, std::vector<sect_offset>, + gdb::hash_enum<sect_offset>> abstract_to_concrete; }; |