This commit is contained in:
Andreas Tsouchlos 2022-02-13 19:43:22 +01:00
parent bb5f4d5272
commit 4128ede5db

View File

@ -7,7 +7,7 @@ using namespace const_fmt;
int main() {
constexpr auto s = "abcdef {:04}"_const_fmt(123);
// Convert the s (with a type of 'std::array<char, N>') into something
// Convert s (with a type of 'std::array<char, N>') into something
// writable to std::cout
std::string_view sv{&s[0], s.size()};