We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2dfcb2 commit f53055eCopy full SHA for f53055e
1 file changed
include/fmt/format.h
@@ -774,9 +774,7 @@ enum { inline_buffer_size = 500 };
774
* converted to `std::string` with `to_string(out)`.
775
*/
776
template <typename T, size_t SIZE = inline_buffer_size,
777
- // DEPRECATED! std::allocator should be replaced with
778
- // detail::allocator
779
- typename Allocator = std::allocator<T>>
+ typename Allocator = detail::allocator<T>>
780
class basic_memory_buffer : public detail::buffer<T> {
781
private:
782
T store_[SIZE];
@@ -2596,7 +2594,7 @@ class bigint {
2596
2594
}
2597
2595
2598
public:
2599
- FMT_CONSTEXPR20 bigint() : exp_(0) {}
+ FMT_CONSTEXPR bigint() : exp_(0) {}
2600
explicit bigint(uint64_t n) { assign(n); }
2601
2602
bigint(const bigint&) = delete;
0 commit comments