-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
MSVC 2017 and define PYBIND11_CPP17 #833
Comments
If what you want is support for As an aside, we can't reasonably define |
some info:
Now visual studio 14 aka visual studio 2015 update 3 documentation :
msvc 2017 test
|
#841 should address this, by setting |
Fixed via #841. |
PYBIND11_CPP17 not defined for msvc 2017 but msvc 2017 has support for extended constexpr and std::variant with compiler option
/std:c++latest
I try explicit define PYBIND11_CPP17 on msvc and run test succesufull. (as far as I understand)
https://github.com/pybind/pybind11/blob/master/include/pybind11/common.h#L19
Can you add PYBIND11_CPP17 support for msvc 2017 (with and without
/std:c++latest
)?The text was updated successfully, but these errors were encountered: