diff options
author | Devin Coughlin <dcoughlin@apple.com> | 2016-02-26 03:41:31 +0000 |
---|---|---|
committer | Devin Coughlin <dcoughlin@apple.com> | 2016-02-26 03:41:31 +0000 |
commit | ec6f61cc2e10f3625d15a10587209eb25e6b0c76 (patch) | |
tree | 383c4af6ff3812434ab52d502a9d91fa6f39648e /clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp | |
parent | 6fc5c7f1f5f90b429975b9fdb4b35bd0ebc277d0 (diff) | |
download | bcm5719-llvm-ec6f61cc2e10f3625d15a10587209eb25e6b0c76.tar.gz bcm5719-llvm-ec6f61cc2e10f3625d15a10587209eb25e6b0c76.zip |
[analyzer] Prune some incorrect \param doc comment annotations.
llvm-svn: 261970
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp index 9c1d69d2fe2..8618eeb0dfe 100644 --- a/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp @@ -173,8 +173,8 @@ void ObjCSuperDeallocChecker::checkLocation(SVal L, bool IsLoad, const Stmt *S, reportUseAfterDealloc(BaseSym, Desc, S, C); } -/// Report a use-after-dealloc on \param Sym. If not empty, -/// \param Desc will be used to describe the error; otherwise, +/// Report a use-after-dealloc on Sym. If not empty, +/// Desc will be used to describe the error; otherwise, /// a default warning will be used. void ObjCSuperDeallocChecker::reportUseAfterDealloc(SymbolRef Sym, StringRef Desc, @@ -199,7 +199,7 @@ void ObjCSuperDeallocChecker::reportUseAfterDealloc(SymbolRef Sym, C.emitReport(std::move(BR)); } -/// Diagnose if any of the arguments to \param CE have already been +/// Diagnose if any of the arguments to CE have already been /// dealloc'd. void ObjCSuperDeallocChecker::diagnoseCallArguments(const CallEvent &CE, CheckerContext &C) const { |