You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Wes McKinney (Jira)" <ji...@apache.org> on 2019/09/22 01:14:00 UTC

[jira] [Closed] (ARROW-6641) [C++] Remove Deprecated WriteableFile warning

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

Wes McKinney closed ARROW-6641.
-------------------------------
    Resolution: Duplicate

> [C++] Remove Deprecated WriteableFile warning
> ---------------------------------------------
>
>                 Key: ARROW-6641
>                 URL: https://issues.apache.org/jira/browse/ARROW-6641
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: C++
>    Affects Versions: 0.14.0, 0.14.1
>            Reporter: Karthikeyan Natarajan
>            Priority: Major
>              Labels: newbie
>             Fix For: 0.15.0
>
>
> Current version is 0.14.1. As per comment, deprecated `WriteableFile` should be removed. 
>  
> {code:java}
> // TODO(kszucs): remove this after 0.13
> #ifndef _MSC_VER
> using WriteableFile ARROW_DEPRECATED("Use WritableFile") = WritableFile;
> using ReadableFileInterface ARROW_DEPRECATED("Use RandomAccessFile") = RandomAccessFile;
> #else
> // MSVC does not like using ARROW_DEPRECATED with using declarations
> using WriteableFile = WritableFile;
> using ReadableFileInterface = RandomAccessFile;
> #endif
> {code}
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)