diff --git a/fmt/format.h b/fmt/format.h index e11a05cf..4b864028 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -624,7 +624,6 @@ inline std::basic_string to_string(const basic_buffer& buffer) { The output can be converted to an ``std::string`` with ``to_string(out)``. \endrst */ -// template > class basic_memory_buffer : private Allocator, public basic_buffer { @@ -990,13 +989,13 @@ struct no_thousands_sep { template class add_thousands_sep { private: - fmt::basic_string_view sep_; + basic_string_view sep_; // Index of a decimal digit with the least significant digit having index 0. unsigned digit_index_; public: - explicit add_thousands_sep(fmt::basic_string_view sep) + explicit add_thousands_sep(basic_string_view sep) : sep_(sep), digit_index_(0) {} void operator()(Char *&buffer) {