Skip to content
Snippets Groups Projects
Commit 293315d2 authored by Timo Koch's avatar Timo Koch
Browse files

[fmt] Expose function in Dumux::Fmt for variable format strings

In C++20 mode passing non-constexpr format string yields a compiler
error. In that case, we have to use vformat(varstr, std::make_format_args(a, b, c...))
parent 748f4213
No related branches found
No related tags found
1 merge request!3362[fmt] Update shipped version to 9.1.0
......@@ -40,6 +40,9 @@ using Dumux::Detail::fmt::format;
using Dumux::Detail::fmt::format_to;
using Dumux::Detail::fmt::format_to_n;
using Dumux::Detail::fmt::formatted_size;
using Dumux::Detail::fmt::vformat;
using Dumux::Detail::fmt::vformat_to;
using Dumux::Detail::fmt::make_format_args;
} // end namespace Dumux::Fmt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment