Skip to content

Commit 4418909

Browse files
committed
Bump fmt to 12.0.0
1 parent f1d748e commit 4418909

File tree

14 files changed

+1079
-1014
lines changed

14 files changed

+1079
-1014
lines changed

include/spdlog/fmt/bundled/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-
template <typename Context> class dynamic_format_arg_store {
74+
FMT_EXPORT template <typename Context> class dynamic_format_arg_store {
7575
private:
7676
using char_type = typename Context::char_type;
7777

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

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

218218
FMT_END_NAMESPACE

0 commit comments

Comments
 (0)