diff options
author | Lancelot Six <lancelot.six@amd.com> | 2023-09-14 11:13:24 +0000 |
---|---|---|
committer | Lancelot Six <lancelot.six@amd.com> | 2023-11-21 11:52:35 +0000 |
commit | 6b62451ad08056f0ba02e192ec34ef67c4294ef4 (patch) | |
tree | 761f6e5a19e9e16d87ec955929aecd025166e335 /gdb/nat | |
parent | 1367eeec2cbd1bb14b89030e199d06fc676ffc49 (diff) | |
download | gdb-6b62451ad08056f0ba02e192ec34ef67c4294ef4.zip gdb-6b62451ad08056f0ba02e192ec34ef67c4294ef4.tar.gz gdb-6b62451ad08056f0ba02e192ec34ef67c4294ef4.tar.bz2 |
gdb: Use C++17's std::make_unique instead of gdb::make_unique
gdb::make_unique is a wrapper around std::make_unique when compiled with
C++17. Now that C++17 is required, use std::make_unique directly in the
codebase, and remove gdb::make_unique.
Change-Id: I80b615e46e4b7c097f09d78e579a9bdce00254ab
Approved-By: Tom Tromey <tom@tromey.com>
Approved-By: Pedro Alves <pedro@palves.net
Diffstat (limited to 'gdb/nat')
-rw-r--r-- | gdb/nat/linux-btrace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/nat/linux-btrace.c b/gdb/nat/linux-btrace.c index 3c217da..c0cebbb 100644 --- a/gdb/nat/linux-btrace.c +++ b/gdb/nat/linux-btrace.c @@ -468,7 +468,7 @@ linux_enable_bts (ptid_t ptid, const struct btrace_config_bts *conf) error (_("BTS support has been disabled for the target cpu.")); std::unique_ptr<linux_btrace_target_info> tinfo - { gdb::make_unique<linux_btrace_target_info> (ptid) }; + { std::make_unique<linux_btrace_target_info> (ptid) }; tinfo->conf.format = BTRACE_FORMAT_BTS; @@ -617,7 +617,7 @@ linux_enable_pt (ptid_t ptid, const struct btrace_config_pt *conf) pid = ptid.pid (); std::unique_ptr<linux_btrace_target_info> tinfo - { gdb::make_unique<linux_btrace_target_info> (ptid) }; + { std::make_unique<linux_btrace_target_info> (ptid) }; tinfo->conf.format = BTRACE_FORMAT_PT; |