Skip to content

Commit 8a6e0c7

Browse files
committed
Revert "update to fmt v12.0.0"
This reverts commit 4dfa2fd.
1 parent 72f4ab6 commit 8a6e0c7

20 files changed

Lines changed: 1512 additions & 1090 deletions

engine/lib/fmt/README.md

Lines changed: 485 additions & 0 deletions
Large diffs are not rendered by default.

engine/lib/fmt/args.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class dynamic_arg_list {
7171
* It can be implicitly converted into `fmt::basic_format_args` for passing
7272
* into type-erased formatting functions such as `fmt::vformat`.
7373
*/
74-
FMT_EXPORT template <typename Context> class dynamic_format_arg_store {
74+
template <typename Context> class dynamic_format_arg_store {
7575
private:
7676
using char_type = typename Context::char_type;
7777

@@ -212,7 +212,7 @@ FMT_EXPORT template <typename Context> class dynamic_format_arg_store {
212212
}
213213

214214
/// Returns the number of elements in the store.
215-
auto size() const noexcept -> size_t { return data_.size(); }
215+
size_t size() const noexcept { return data_.size(); }
216216
};
217217

218218
FMT_END_NAMESPACE

0 commit comments

Comments
 (0)