mirror of
https://github.com/boostorg/static_string.git
synced 2026-08-28 15:42:16 +02:00
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.