Skip to content

Commit e95fc02

Browse files
committed
fix: remove deprecated operator"" syntax usage
Clang warns about this. Apparently GCC 4.9 may warn about the fixed syntax, though!
1 parent 8dc7a39 commit e95fc02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nanoarrow/nanoarrow.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ namespace literals {
9292
/// @{
9393

9494
/// \brief User literal operator allowing ArrowStringView construction like "str"_asv
95-
inline ArrowStringView operator"" _asv(const char* data, std::size_t size_bytes) {
95+
inline ArrowStringView operator""_asv(const char* data, std::size_t size_bytes) {
9696
return {data, static_cast<int64_t>(size_bytes)};
9797
}
9898

0 commit comments

Comments
 (0)