diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-10-02 22:01:46 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-10-03 09:42:42 +0100 |
commit | a8b3b8e93e36d2c9efe346f04f3bbd767e3cc0f0 (patch) | |
tree | e092dacea805adba45bb451efdebb9510082e403 /gdb/gdbsupport | |
parent | 4d825eab2dc70954ce1d229f48741da4936947fb (diff) | |
download | gdb-a8b3b8e93e36d2c9efe346f04f3bbd767e3cc0f0.zip gdb-a8b3b8e93e36d2c9efe346f04f3bbd767e3cc0f0.tar.gz gdb-a8b3b8e93e36d2c9efe346f04f3bbd767e3cc0f0.tar.bz2 |
gdb: Remove whitespace in 'std::vector <...>'
In the following 3 commits:
commit df07e2c772dab40d268dc44c78bb087c4b75b3c6
Date: Wed Sep 25 16:10:50 2019 +0100
gdb: Remove a use of VEC from dwarf2read.{c,h}
commit 554ac434b02465f1fc925b0ae3393fb841e0d59c
Date: Thu Sep 19 13:17:59 2019 -0400
gdb: Change a VEC to std::vector in btrace.{c,h}
commit 46f29a9a260da1a03176682aff63bad03d8f2e8b
Date: Mon Sep 16 09:12:27 2019 -0400
gdb: Remove a VEC from gdbsupport/btrace-common.h
I incorrectly wrote 'std::vector <...>' instead of 'std::vector<...>',
this commit fixes this mistake. There should be no user visible
changes after this commit.
gdb/ChangeLog:
* btrace.c (btrace_add_pc): Remove whitespace before the template
parameter in 'std::vector <...>'.
(parse_xml_btrace_block): Likewise.
(btrace_maint_decode_pt): Likewise.
(btrace_maint_update_packets): Likewise.
(btrace_maint_print_packets): Likewise.
* btrace.h (struct btrace_maint_info): Likewise.
* dwarf2read.c (struct type_unit_group): Likewise.
(build_type_psymtabs_reader): Likewise.
* gdbsupport/btrace-common.c (btrace_data_append): Likewise.
* gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
* nat/linux-btrace.c (perf_event_read_bts): Likewise.
Diffstat (limited to 'gdb/gdbsupport')
-rw-r--r-- | gdb/gdbsupport/btrace-common.c | 2 | ||||
-rw-r--r-- | gdb/gdbsupport/btrace-common.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbsupport/btrace-common.c b/gdb/gdbsupport/btrace-common.c index d6d3ab5..608506c 100644 --- a/gdb/gdbsupport/btrace-common.c +++ b/gdb/gdbsupport/btrace-common.c @@ -133,7 +133,7 @@ btrace_data_append (struct btrace_data *dst, case BTRACE_FORMAT_NONE: dst->format = BTRACE_FORMAT_BTS; - dst->variant.bts.blocks = new std::vector <btrace_block>; + dst->variant.bts.blocks = new std::vector<btrace_block>; /* Fall-through. */ case BTRACE_FORMAT_BTS: diff --git a/gdb/gdbsupport/btrace-common.h b/gdb/gdbsupport/btrace-common.h index 166d7b1..09a9048 100644 --- a/gdb/gdbsupport/btrace-common.h +++ b/gdb/gdbsupport/btrace-common.h @@ -141,7 +141,7 @@ struct btrace_data_bts /* Branch trace is represented as a vector of branch trace blocks starting with the most recent block. This needs to be a pointer as we place btrace_data_bts into a union. */ - std::vector <btrace_block> *blocks; + std::vector<btrace_block> *blocks; }; /* Configuration information to go with the trace data. */ |