Uploaded image for project: 'Apache Arrow'
  1. Apache Arrow
  2. ARROW-6641

[C++] Remove Deprecated WriteableFile warning

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Duplicate
    • 0.14.0, 0.14.1
    • 0.15.0
    • C++

    Description

      Current version is 0.14.1. As per comment, deprecated `WriteableFile` should be removed. 

       

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

       

       

      Attachments

        Activity

          People

            Unassigned Unassigned
            karthikeyann Karthikeyan Natarajan
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: