kou commented on issue #46576:
URL: https://github.com/apache/arrow/issues/46576#issuecomment-2910908469

   There is no encoding conversion feature in our codebase and C++ standard.
   We need to implement UTF-8 <-> UTF-16/UTF-32 conversions by ourselves (it's 
not difficult) or use external libraries. (Only Windows provides the API for 
them.)
   
   We can suppress it by surrounding codes that uses `codecvt_utf8` by:
   
   ```c
   #pragma GCC diagnostic push
   #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
   ```
   
   and
   
   ```c
   #pragma GCC diagnostic pop
   ```
   
   .


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to