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
In some cases binder will generate code that is not compatible with MSVC, e.g.
using _binder_ret_0 = class std::map<std::string, std::string >;
The following code is will not compile in MSVC:
#include <stdexcept> #include <string> #include <map> using _binder_ret_0 = class std::map<std::string, std::string >; int main() { _binder_ret_0 a; a["a"]="a"; return 0; }
but is OK for GCC.
To make the code compatible one should remove the "class" word.
using _binder_ret_0 = std::map<std::string, std::string >;
The text was updated successfully, but these errors were encountered:
resolved in #299
Sorry, something went wrong.
No branches or pull requests
In some cases binder will generate code that is not compatible with MSVC, e.g.
The following code is will not compile in MSVC:
but is OK for GCC.
To make the code compatible one should remove the "class" word.
The text was updated successfully, but these errors were encountered: