mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-19 16:15:07 +00:00
In libstdc++ shipped with gcc9 std::basic_string_view::pointer is no longer constant, which is causing the compiler to complain about dropping const in reinterpret_cast. The solution is to use std::basic_string_view::const_pointer.