You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My guess is that this is an error introduced with the switch from make_args_checked to make_format_args. The linked example code in the docs still assumes make_args_checked is present and thus fails to compile at the moment.
The text was updated successfully, but these errors were encountered:
The code found here: https://fmt.dev/latest/api.html#argument-lists does not work as documented, there are no compile time checks, the following code compiles fine and produces a runtime error: https://godbolt.org/z/8oT34bhP1
My guess is that this is an error introduced with the switch from
make_args_checked
tomake_format_args
. The linked example code in the docs still assumesmake_args_checked
is present and thus fails to compile at the moment.The text was updated successfully, but these errors were encountered: