You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@arrow.apache.org by "Wes McKinney (JIRA)" <ji...@apache.org> on 2016/12/10 01:05:59 UTC

[jira] [Updated] (ARROW-328) [C++] Return shared_ptr by value instead of const-ref?

     [ https://issues.apache.org/jira/browse/ARROW-328?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Wes McKinney updated ARROW-328:
-------------------------------
    Assignee: Wes McKinney

PR: https://github.com/apache/arrow/pull/235

> [C++] Return shared_ptr by value instead of const-ref?
> ------------------------------------------------------
>
>                 Key: ARROW-328
>                 URL: https://issues.apache.org/jira/browse/ARROW-328
>             Project: Apache Arrow
>          Issue Type: Improvement
>          Components: C++
>            Reporter: Wes McKinney
>            Assignee: Wes McKinney
>
> This is largely my fault but: many C++ programmers seem to feel that you should always return {{std::shared_ptr}} by value for a couple reasons:
> * RVO in many cases prevents a double ref-count manipulation and,
> * If you are planning to share ownership with the other class, you will need to copy the shared_ptr anyway
> On some contemplation I'm +1 on changing all {{const std::shared_ptr<T>&}} to {{std::shared_ptr<T>}}, but let me know if there are other opinions. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)