mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 10:47:35 +02:00
Revert "Workaround an ABI issue in spdlog"
This reverts commit 784eac839d
.
This commit is contained in:
@ -774,9 +774,7 @@ enum { inline_buffer_size = 500 };
|
|||||||
* converted to `std::string` with `to_string(out)`.
|
* converted to `std::string` with `to_string(out)`.
|
||||||
*/
|
*/
|
||||||
template <typename T, size_t SIZE = inline_buffer_size,
|
template <typename T, size_t SIZE = inline_buffer_size,
|
||||||
// DEPRECATED! std::allocator should be replaced with
|
typename Allocator = detail::allocator<T>>
|
||||||
// detail::allocator
|
|
||||||
typename Allocator = std::allocator<T>>
|
|
||||||
class basic_memory_buffer : public detail::buffer<T> {
|
class basic_memory_buffer : public detail::buffer<T> {
|
||||||
private:
|
private:
|
||||||
T store_[SIZE];
|
T store_[SIZE];
|
||||||
@ -2596,7 +2594,7 @@ class bigint {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
FMT_CONSTEXPR20 bigint() : exp_(0) {}
|
FMT_CONSTEXPR bigint() : exp_(0) {}
|
||||||
explicit bigint(uint64_t n) { assign(n); }
|
explicit bigint(uint64_t n) { assign(n); }
|
||||||
|
|
||||||
bigint(const bigint&) = delete;
|
bigint(const bigint&) = delete;
|
||||||
|
Reference in New Issue
Block a user