We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I recently upgraded to 7.1.3 and trunk and noticed that existing code does not compile anymore:
error: call to 'check' is ambiguous return check(arg_mapper().map(val));
A check function exists in the same namespace as the type that is used with fmt:
https://godbolt.org/z/563zYf
fully qualifying the check call in fmt fixes the issue:
fmt::detail::check(...)
The text was updated successfully, but these errors were encountered:
Fix an ambiguous call to check caused by ADL (#2184)
1147782
Fixed in 1147782, thanks for reporting.
Sorry, something went wrong.
No branches or pull requests
I recently upgraded to 7.1.3 and trunk and noticed that existing code does not compile anymore:
error: call to 'check' is ambiguous
return check(arg_mapper().map(val));
A check function exists in the same namespace as the type that is used with fmt:
https://godbolt.org/z/563zYf
fully qualifying the check call in fmt fixes the issue:
fmt::detail::check(...)
The text was updated successfully, but these errors were encountered: