You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mesos.apache.org by "Artem Harutyunyan (JIRA)" <ji...@apache.org> on 2015/06/30 23:08:05 UTC

[jira] [Updated] (MESOS-2965) Stout os functions don't take Path

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

Artem Harutyunyan updated MESOS-2965:
-------------------------------------
    Summary: Stout os functions don't take Path   (was: Stout os functions don't take stout::Path )

> Stout os functions don't take Path 
> -----------------------------------
>
>                 Key: MESOS-2965
>                 URL: https://issues.apache.org/jira/browse/MESOS-2965
>             Project: Mesos
>          Issue Type: Improvement
>          Components: stout
>            Reporter: Artem Harutyunyan
>            Priority: Minor
>              Labels: beginner, mesosphere, newbie, stout
>
> For example:
> {code}inline Try<Nothing> rm(const std::string& path){code} does not have an overload for {code}inline Try<Nothing> rm(const Path& path){code}
> The implementation should be something like: 
> {code}
> inline Try<Nothing> rm(const Path& path)
> {
>   rm(path.value);
> }
> {code}



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