mapleFU commented on PR #15238:
URL: https://github.com/apache/arrow/pull/15238#issuecomment-1374393092

   If you think here is api broken, maybe I can add a override as:
   
   ```
   [[noreturn]] void Unreachable(const char* message) {
     DCHECK(false) << message;
     std::abort();
   }
   
   [[noreturn]] void Unreachable(std::string_view message) {
     DCHECK(false) << message;
     std::abort();
   }
   ```


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to