-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: remove deprecated operator"" syntax usage #661
Conversation
Clang warns about this. Apparently GCC 4.9 may warn about the fixed syntax, though!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm. Meson coverage error seems unrelated
Yes, I think this happened because it fails to compile on GCC 4.8 this way:
Because we still check that the tests pass when compiled on gcc 4.8 and we use #if !defined(__clang__) && (defined(__GNUC__) && __GNUC__ < 6)
inline ArrowStringView operator"" _asv(const char* data, std::size_t size_bytes) {
#else
inline ArrowStringView operator""_asv(const char* data, std::size_t size_bytes) {
#endif ...Or we could move that to the |
Ah, bleh. I'll try with the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
I opened an issue for the Meson coverage build failure: #663
Clang warns about this. Apparently GCC 4.9 may warn about the fixed syntax, though!
Spotted in the ADBC CI: