We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fdf225 commit 784eac8Copy full SHA for 784eac8
include/fmt/format.h
@@ -774,7 +774,9 @@ 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
- typename Allocator = detail::allocator<T>>
+ // DEPRECATED! std::allocator should be replaced with
778
+ // detail::allocator
779
+ typename Allocator = std::allocator<T>>
780
class basic_memory_buffer : public detail::buffer<T> {
781
private:
782
T store_[SIZE];
@@ -2594,7 +2596,7 @@ class bigint {
2594
2596
}
2595
2597
2598
public:
- FMT_CONSTEXPR bigint() : exp_(0) {}
2599
+ FMT_CONSTEXPR20 bigint() : exp_(0) {}
2600
explicit bigint(uint64_t n) { assign(n); }
2601
2602
bigint(const bigint&) = delete;
0 commit comments