We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
push_back<vector20<...>, X>::type
The following code is fine on GCC and Clang, but fails on MSVC and ICC.
#include <boost/mpl/vector.hpp> #include <boost/mpl/push_back.hpp> struct X; using vec = boost::mpl::vector<X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X>; using test = boost::mpl::push_back<vec, X>::type;
https://godbolt.org/z/w-yTto
This inconsistency confuses people: 1) https://stackoverflow.com/questions/55900932/issue-with-x3-and-ms-vs2017 2) boostorg/spirit#515
The text was updated successfully, but these errors were encountered:
@Kojoley could you add a test for this? CI will run it against a lot of different platforms now.
Sorry, something went wrong.
No branches or pull requests
The following code is fine on GCC and Clang, but fails on MSVC and ICC.
https://godbolt.org/z/w-yTto
This inconsistency confuses people: 1) https://stackoverflow.com/questions/55900932/issue-with-x3-and-ms-vs2017 2) boostorg/spirit#515
The text was updated successfully, but these errors were encountered: