-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
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
error: no matching function for call to 'vformat_to' #2513
Comments
I can't be sure since you did not provide the source code of your project, but from the error message it is due to a failure to resolve a template function. By name, |
Thanks for your input @tt4g . Unfortunately, the variable Given that all the variables |
Is Lines 306 to 307 in d011332
My guess is that the fmt installed on your machine is being used. spdlog 1.9.2 does not support fmt 9.x. |
Thanks a ton @tt4g . Indeed it was the fact that v1.9.2 was seeing previous installations of fmt v9.x.x elsewhere on my system. Sticking to the compatible version of fmt fixed the issue. |
I'm building
spdlog v1.9.2
from source on ubuntu-jammy using the following commandHowever, I consistently get the following error once I run my code. Strangely, this only seems an issue on linux, since the same code when run using apple-clang on my M1 mac mini runs without complaints.
The text was updated successfully, but these errors were encountered: