diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-08-04 22:48:46 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-08-04 22:48:46 +0000 |
commit | 13a4f76d517fdf1c1ec2c31193293e738f86b83e (patch) | |
tree | 5686e53c0b769650bfd872e90b0dbadd01d14c47 /clang/lib/Analysis/ThreadSafety.cpp | |
parent | e9882cf315057d116f7edcb0023dc342a684234a (diff) | |
download | bcm5719-llvm-13a4f76d517fdf1c1ec2c31193293e738f86b83e.tar.gz bcm5719-llvm-13a4f76d517fdf1c1ec2c31193293e738f86b83e.zip |
ThreadSafety.cpp: Prune bogus \param(s). [-Wdocumentation]
llvm-svn: 214796
Diffstat (limited to 'clang/lib/Analysis/ThreadSafety.cpp')
-rw-r--r-- | clang/lib/Analysis/ThreadSafety.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/lib/Analysis/ThreadSafety.cpp b/clang/lib/Analysis/ThreadSafety.cpp index 5ec9d297f0b..2108bbb3c54 100644 --- a/clang/lib/Analysis/ThreadSafety.cpp +++ b/clang/lib/Analysis/ThreadSafety.cpp @@ -907,8 +907,6 @@ inline bool ThreadSafetyAnalyzer::inCurrentScope(const CapabilityExpr &CapE) { /// \brief Add a new lock to the lockset, warning if the lock is already there. -/// \param Mutex -- the Mutex expression for the lock -/// \param LDat -- the LockData for the lock /// \param ReqAttr -- true if this is part of an initial Requires attribute. void ThreadSafetyAnalyzer::addLock(FactSet &FSet, const FactEntry &Entry, StringRef DiagKind, bool ReqAttr) { @@ -941,7 +939,6 @@ void ThreadSafetyAnalyzer::addLock(FactSet &FSet, const FactEntry &Entry, /// \brief Remove a lock from the lockset, warning if the lock is not there. -/// \param Mutex The lock expression corresponding to the lock to be removed /// \param UnlockLoc The source location of the unlock (only used in error msg) void ThreadSafetyAnalyzer::removeLock(FactSet &FSet, const CapabilityExpr &Cp, SourceLocation UnlockLoc, |