felipecrv commented on issue #38263: URL: https://github.com/apache/arrow/issues/38263#issuecomment-1762209404
> It looks like previously [re2::StringPiece::begin()](https://github.com/google/re2/blob/2023-03-01/re2/stringpiece.h#L42) returned a pointer, whereas now it may return an iterator struct instead. The fix is for code in arrow which uses StringPiece::begin() to replace that with StringPiece::data(), which will always return a pointer. I checked the `re2` and `abseil-cpp` code and that's not the case. It seems like the problem is that MSVC doesn't allow converting `std::string_view::const_iterator` to `const char *`. -- 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]
