diff --git a/include/fmt/format.h b/include/fmt/format.h index 81c97a07..4fe5b430 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -774,7 +774,9 @@ enum { inline_buffer_size = 500 }; * converted to `std::string` with `to_string(out)`. */ template > + // DEPRECATED! std::allocator should be replaced with + // detail::allocator + typename Allocator = std::allocator> class basic_memory_buffer : public detail::buffer { private: T store_[SIZE]; @@ -2594,7 +2596,7 @@ class bigint { } public: - FMT_CONSTEXPR bigint() : exp_(0) {} + FMT_CONSTEXPR20 bigint() : exp_(0) {} explicit bigint(uint64_t n) { assign(n); } bigint(const bigint&) = delete;