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
No std::add_pointer, std::is_same and std::enable_if but have std::tr1::add_pointer and std::tr1::is_same. I modify macro and compile successfully:
#define variant_HAVE_CONDITIONAL variant_CPP11_120 #define variant_HAVE_REMOVE_CV variant_CPP11_120 #define variant_HAVE_STD_ADD_POINTER variant_CPP11_100 // <-- #define variant_HAVE_TYPE_TRAITS variant_CPP11_90 #define variant_HAVE_ENABLE_IF variant_CPP11_100 // <-- #define variant_HAVE_IS_SAME variant_CPP11_100 // <-- #define variant_HAVE_TR1_TYPE_TRAITS (!! variant_COMPILER_GNUC_VERSION ) #define variant_HAVE_TR1_ADD_POINTER (!! variant_COMPILER_GNUC_VERSION || variant_CPP11_90 ) // <--
But I'm not sure my std headers is correct.
The text was updated successfully, but these errors were encountered:
Try and fix for MSVC 9 (VS2008) (#43, thanks @Elite-stay)
cee36fa
On AppVeyor, only compile for "Visual Studio 9 2008" (#43)
b6dbd73
679d8e7
On AppVeyor, restore full matrix (#43)
adab5dc
Thanks @Elite-stay, looks like it now works with MSVC 9.
Sorry, something went wrong.
No branches or pull requests
No std::add_pointer, std::is_same and std::enable_if but have std::tr1::add_pointer and std::tr1::is_same. I modify macro and compile successfully:
But I'm not sure my std headers is correct.
The text was updated successfully, but these errors were encountered: