Skip to content

Commit f53055e

Browse files
committed
Revert "Workaround an ABI issue in spdlog"
This reverts commit 784eac8.
1 parent b2dfcb2 commit f53055e

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

include/fmt/format.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -774,9 +774,7 @@ enum { inline_buffer_size = 500 };
774774
* converted to `std::string` with `to_string(out)`.
775775
*/
776776
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>>
777+
typename Allocator = detail::allocator<T>>
780778
class basic_memory_buffer : public detail::buffer<T> {
781779
private:
782780
T store_[SIZE];
@@ -2596,7 +2594,7 @@ class bigint {
25962594
}
25972595

25982596
public:
2599-
FMT_CONSTEXPR20 bigint() : exp_(0) {}
2597+
FMT_CONSTEXPR bigint() : exp_(0) {}
26002598
explicit bigint(uint64_t n) { assign(n); }
26012599

26022600
bigint(const bigint&) = delete;

0 commit comments

Comments
 (0)