You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@kudu.apache.org by "Todd Lipcon (Code Review)" <ge...@cloudera.org> on 2016/02/19 06:57:23 UTC

[kudu-CR] arena: switch from shared_ptr components to unique_ptr

Hello Dan Burkert,

I'd like you to do a code review.  Please visit

    http://gerrit.cloudera.org:8080/2242

to review the following change.

Change subject: arena: switch from shared_ptr components to unique_ptr
......................................................................

arena: switch from shared_ptr components to unique_ptr

We used to use shared_ptr here for laziness rather than for any
real sharing. unique_ptr works just as well, now that we are
in C++11.

Change-Id: If5218339809e6cb05461f978fe75860b97b01b61
---
M src/kudu/util/memory/arena.cc
M src/kudu/util/memory/arena.h
2 files changed, 5 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.cloudera.org:29418/kudu refs/changes/42/2242/1
-- 
To view, visit http://gerrit.cloudera.org:8080/2242
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If5218339809e6cb05461f978fe75860b97b01b61
Gerrit-PatchSet: 1
Gerrit-Project: kudu
Gerrit-Branch: master
Gerrit-Owner: Todd Lipcon <to...@apache.org>
Gerrit-Reviewer: Dan Burkert <da...@cloudera.com>