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
Since c#8 unmanaged constructed types have been allowed, but this causes a conflict between SA1015 and SA1023 where
internal UnsafeList<int>* Tris;
Triggers https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md As there is no spacing after the generic brackets, but adding spaces
internal UnsafeList<int> *Tris;
Triggers https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1023.md As spaces aren't allowed before dereference or access-of symbol and one must exist after.
The text was updated successfully, but these errors were encountered:
Fix handling of pointers to generic types
3d6a972
Fixes DotNetAnalyzers#3302
sharwell
Successfully merging a pull request may close this issue.
Since c#8 unmanaged constructed types have been allowed, but this causes a conflict between SA1015 and SA1023 where
internal UnsafeList<int>* Tris;
Triggers https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md
As there is no spacing after the generic brackets, but adding spaces
internal UnsafeList<int> *Tris;
Triggers https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1023.md
As spaces aren't allowed before dereference or access-of symbol and one must exist after.
The text was updated successfully, but these errors were encountered: