-
Notifications
You must be signed in to change notification settings - Fork 45
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 support for -std=c++17 & -std=c++2a flag #99
Conversation
The travis-ci failure is due to a setup issue, not the code change. |
The patch looks good. I am working on fixing the CI here: #98. Once this is done I'll have a closer look to your changes :) |
Thanks. I added some new |
I fixed the CI, you can rebase and force push this. |
bc8a993
to
34607ec
Compare
I deleted all the unused |
@iMichka, sorry to bother you, but if the patch looks OK, would you please consider merging and creating a release? It would save me the trouble of having to patch pygccxml locally. |
Hi @iMichka, any update on this? |
Hey, really sorry, got stuck with other projects. I really need to find more time to work on this next pygccxml release. Could you add the So please just add them back, thanks. Once this is done I will merge this right away. |
gcc/clang C++ standard version flags now support the -std=c++17 & -std=c++2a flags, along with their "gnu" counterparts. Unused `is_cxx*` functions have been deleted.
Done, added the functions back. I haven't added new |
Thanks @praetorian20. I will be on vacation and without internet connection during the 2 next weeks. I hope I can work a little bit on pygccxml soon so that I can get this 2.0.0 release out. |
gcc/clang C++ standard version flags now support the -std=c++17 &
-std=c++2a flags, along with their "gnu" counterparts.