NSErrorChecker used to suggest changing 'void' return type for
constructors and delete operators. This makes little sense because
return types of these functions could not be altered.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Looks great, thanks! Do you already have commit access or should i commit this for you?
clang/test/Analysis/SpecialFunctionsCFError.cpp | ||
---|---|---|
3 | -analyzer-store=region is redundant; it's the default and the only possible value for this option. We should remove it from other tests as well. |
clang/test/Analysis/SpecialFunctionsCFError.cpp | ||
---|---|---|
3 | The default lit command is a bit silly. What does -setup-analyzer or something like that even do? |
Thanks :-) No, I don't have commit access
clang/test/Analysis/SpecialFunctionsCFError.cpp | ||
---|---|---|
3 | Should I remove it from here in this commit or we should clean up all tests at once? |
clang/test/Analysis/SpecialFunctionsCFError.cpp | ||
---|---|---|
3 |
1029 if (PPOpts.SetUpStaticAnalyzer) 1030 Builder.defineMacro("__clang_analyzer__"); :)
I'll remove when committing, thx! |
-analyzer-store=region is redundant; it's the default and the only possible value for this option. We should remove it from other tests as well.