Files
static_string/test
Gennaro Prota 8c44a96c8d Use std::string_view in the available() test's pos/count append() example
The test I added with available() passed "xyzwv" directly to the 3-arg
append(v, pos, count). That overload's viewable-T constraint excludes
const CharT*-convertible types (to avoid clashing with append(const
CharT*, size_type)), so the C-string literal doesn't match and there is
no viable 3-arg overload. Wrap the literal in std::string_view.
2026-04-24 06:41:11 +02:00
..
2025-10-03 12:12:05 +02:00