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
vs10 will compile the following without errors, even when language extensions are disabled.
namespace A { template <typename T> class X; } namespace B { template <> class A::X<int>; }
clang correctly outputs
error: class template specialization of 'X' must originally be declared in namespace 'A'
The diagnostic should be suppressed when -fms-compatibility is in effect.
The text was updated successfully, but these errors were encountered:
Patch (no tests): avakar/clang@777e004
Sorry, something went wrong.
sorry, wrong bug
patch for pr13738
Fixed in r232800.
No branches or pull requests
Extended Description
vs10 will compile the following without errors, even when language extensions are disabled.
clang correctly outputs
The diagnostic should be suppressed when -fms-compatibility is in effect.
The text was updated successfully, but these errors were encountered: