Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deps/fmt
Submodule fmt updated 193 files
4 changes: 2 additions & 2 deletions src/openvic-dataloader/DiagnosticLogger.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <dryad/node_map.hpp>
#include <dryad/tree.hpp>

#include <fmt/core.h>
#include <fmt/format.h>

#include <lexy_ext/report_error.hpp>

Expand Down Expand Up @@ -216,7 +216,7 @@ namespace ovdl {
using file_type = typename parse_state_type::file_type;

template<typename... Args>
using format_str = fmt::basic_format_string<char, fmt::type_identity_t<Args>...>;
using format_str = fmt::format_string<Args...>;

explicit BasicDiagnosticLogger(const file_type& file)
: _file(&file) {
Expand Down