diff options
author | Pedro Alves <palves@redhat.com> | 2016-11-09 12:49:43 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2016-11-09 14:57:55 +0000 |
commit | 6c73cd95f96d37dbf6092a87c8ba0f35277223a5 (patch) | |
tree | 1df7a0ca6bc434f553e705850b9bbd1d08fc0532 /gdb/ax-gdb.c | |
parent | 7a63494a0df60cf71b9cf03c4eb8f24719d03e66 (diff) | |
download | gdb-6c73cd95f96d37dbf6092a87c8ba0f35277223a5.zip gdb-6c73cd95f96d37dbf6092a87c8ba0f35277223a5.tar.gz gdb-6c73cd95f96d37dbf6092a87c8ba0f35277223a5.tar.bz2 |
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.
Diffstat (limited to 'gdb/ax-gdb.c')
-rw-r--r-- | gdb/ax-gdb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/ax-gdb.c b/gdb/ax-gdb.c index 1816ba6..cd97585 100644 --- a/gdb/ax-gdb.c +++ b/gdb/ax-gdb.c @@ -2555,7 +2555,7 @@ agent_eval_command_one (const char *exp, int eval, CORE_ADDR pc) arg = exp; if (!eval && strcmp (arg, "$_ret") == 0) { - agent = gdb::move (gen_trace_for_return_address (pc, get_current_arch (), + agent = std::move (gen_trace_for_return_address (pc, get_current_arch (), trace_string)); } else @@ -2565,10 +2565,10 @@ agent_eval_command_one (const char *exp, int eval, CORE_ADDR pc) if (eval) { gdb_assert (trace_string == 0); - agent = gdb::move (gen_eval_for_expr (pc, expr.get ())); + agent = std::move (gen_eval_for_expr (pc, expr.get ())); } else - agent = gdb::move (gen_trace_for_expr (pc, expr.get (), trace_string)); + agent = std::move (gen_trace_for_expr (pc, expr.get (), trace_string)); } ax_reqs (agent.get ()); |