We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
consider: struct C { static const int I = 5; };
const int C::I;
We do not emit a definition of C::I even though both the standard and cl.exe both do.
The text was updated successfully, but these errors were encountered:
I believe that this is a regression caused by r213304.
Sorry, something went wrong.
I've got an initial patch for this issue. Will review and commit in a couple of days.
Software Engineer Intel Compiler Team Intel
Fixed in r237787.
No branches or pull requests
Extended Description
consider:
struct C {
static const int I = 5;
};
const int C::I;
We do not emit a definition of C::I even though both the standard and cl.exe both do.
The text was updated successfully, but these errors were encountered: