-
Notifications
You must be signed in to change notification settings - Fork 186
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
Upgrading to C++20 #3578
Upgrading to C++20 #3578
Conversation
Update develop-pypi
Update pypi
It should not be a problem for me. On this page: https://developer.apple.com/xcode/cpp The features supported by Xcode are listed. One thing of note is that the referenced page says XCode 15 is required for many of the new C++20 features: And there is a fair amount of C++20 features that Xcode does not support yet (so don't use those). Here are the C++20 features that GCC supports: https://gcc.gnu.org/projects/cxx-status.html#cxx20 Of note:
and a note about compiler flags in GCC:
But that should not be a problem since GCC 11 is required for all implemented features (on my up-to-date linux I am using GCC 13) and a on slightly older version of linux I am using GCC 12. |
Thanks for checking this. This is the status of the building tests on GH They all look fine. There is however one problem on Windows https://ci.appveyor.com/project/LaurentPugin/verovio-r1t6l/builds/49024120 |
This reverts commit b933752.
No major changes beside:
LedgerLine
definition up (before `Staff) because of one compiler complaining about itIf upgrading to C++20 is a problem, please speak up. It is not absolutely necessary to do this now, but at the same time there seems to be no reason no to do it.