[ 
https://issues.apache.org/jira/browse/ARROW-6641?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16934910#comment-16934910
 ] 

Paul Taylor commented on ARROW-6641:
------------------------------------

I think this was addressed by 
[e41ad0d2|https://github.com/apache/arrow/commit/e41ad0d2ccaf96812d902b161d8a0b2b372f1b72]
 which should make it into the 0.15 release.

> 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
>
> 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)

Reply via email to