Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp | ||
---|---|---|
535 ↗ | (On Diff #180730) | Mmm, what does L stand for here? |
541–545 ↗ | (On Diff #180730) | std::any_of()? |
clang/lib/StaticAnalyzer/Core/RetainSummaryManager.cpp | ||
865 ↗ | (On Diff #180730) | Typo: "because". |
clang/test/Analysis/osobject-retain-release.cpp | ||
116 ↗ | (On Diff #180730) | Should we somehow indicate that we assumed that the function returns a success value? I.e., bug visitor / tag. Also what is the intended behavior if we replace write_into_out_param_on_success with write_into_out_param_on_failure here? |
116 ↗ | (On Diff #180730) | That is, i really want this test added, and then it's good to commit, other nits are minor. |
clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp | ||
---|---|---|
535 ↗ | (On Diff #180730) | vaLue. |
541–545 ↗ | (On Diff #180730) | That's super verbose with iterators and requires putting those values in the array. <template T, template Others...> bool isAnyOf(T Val, Others... OtherVals) function |
Comment Actions
Yay thx.
clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp | ||
---|---|---|
535 ↗ | (On Diff #180730) | L usually stands for Loc; V is more common for raw SVals. |