-
Notifications
You must be signed in to change notification settings - Fork 119
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
sprintf
deprecation warning on macOS
#117
Comments
sprints
deprecation warning on macOSsprintf
deprecation warning on macOS
I replaced sprintf with snprintf which should solve the issue. Please test it. |
No errors anymore. Detailed test output
|
If I may ask, when do you anticipate creating the next muParser release? That's the time when GROMACS can upgrade their dependency and properly resolve the |
Soon. As in a couple of days soon or at least in november. |
issue closed; 2.3.4 is released |
I wish my gcc compiler had this warning... chasing down a bug where someone used sprintf on a fixed sized buffer of 128 bytes... of course it was too short eventually... |
I came across a compiler warning regarding
sprintf
. On macOS 13, the function was deprecated in favor ofvsprintf
. This deprecation has affected multiple code bases, including VkFFT and GROMACS. Hopefully you can fix it early, as additional clients may face the compiler warning.The text was updated successfully, but these errors were encountered: