-
Notifications
You must be signed in to change notification settings - Fork 216
Add skills for {fmt} #287
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
Add skills for {fmt} #287
Conversation
|
This is awesome. I'm wondering if we could remove the dependency on std::format (i.e., #include ) if we use {fmt}. |
|
Hi @zhiyongww, removing dependency on |
Hey @mingxwa, thanks for the reply. In our company, std::format is not available in our production environment even though we use C++20. I was thinking about using the proxy library to replace virtual functions to improve the performance of our program. Thanks. |
tian-lt
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also update the "single header"s in FAQ?
Changes
proxy_fmt.hwith 2 new skills:pro::skills::fmt_formatandpro::skills::fmt_wformat.Note that
proxy_fmt.his not self-contained. Users need to include bothproxy.hand the{fmt}library (version 6.1.0 or later) beforeproxy_fmt.h. Spec will be updated separately.Resolves #279