Checklist
Description
The bpstd::basic_string_view uses std::char_traits as a background. This produces a error in a constexpr context:
error: call to non-'constexpr' function 'static std::size_t std::char_traits<char>::length(const char_type*)'.
This is correspond to the standard because char_traits::length is marked constexpr since C++17 only.
P.S. Idk whether it's a bug or a feature request.
Checklist
Description
The bpstd::basic_string_view uses std::char_traits as a background. This produces a error in a constexpr context:
error: call to non-'constexpr' function 'static std::size_t std::char_traits<char>::length(const char_type*)'.This is correspond to the standard because char_traits::length is marked constexpr since C++17 only.
P.S. Idk whether it's a bug or a feature request.