agent_expr_up: gdb::unique_ptr -> std::unique_ptr
authorPedro Alves <palves@redhat.com>
Wed, 9 Nov 2016 12:49:43 +0000 (12:49 +0000)
committerPedro Alves <palves@redhat.com>
Wed, 9 Nov 2016 14:57:55 +0000 (14:57 +0000)
commit6c73cd95f96d37dbf6092a87c8ba0f35277223a5
tree1df7a0ca6bc434f553e705850b9bbd1d08fc0532
parent7a63494a0df60cf71b9cf03c4eb8f24719d03e66
agent_expr_up: gdb::unique_ptr -> std::unique_ptr

Now that we require C++11, use std::unique_ptr directly.  This allows
simplifying collection_list a bit by placing unique pointers in the
vector directly, making the vector own its elements.

gdb/ChangeLog:
2016-11-09  Pedro Alves  <palves@redhat.com>

* ax-gdb.c (agent_eval_command_one): Use std::move instead of
gdb::move.
* ax.h (agent_expr_up): Use std::unique_ptr instead of
gdb::unique_ptr.
* breakpoint.c (parse_cond_to_aexpr): Use std::move instead of
gdb::move.
* tracepoint.c (collection_list::collect_symbol): Likewise.
(collection_list::~collection_list): Delete.
(encode_actions_1): Use std::move instead of gdb::move.
(collection_list::add_aexpr): Use std::move instead of
unique_ptr::release.
* tracepoint.h (collection_list) <~collection_list>: Delete
declaration.
<m_aexprs>: Now a vector of agent_ptr_up.
gdb/ChangeLog
gdb/ax-gdb.c
gdb/ax.h
gdb/breakpoint.c
gdb/tracepoint.c
gdb/tracepoint.h
This page took 0.030626 seconds and 4 git commands to generate.