From: Aaron Ballman Date: Tue, 5 Aug 2014 11:48:21 +0000 (+0000) Subject: Updating the documentation comment to list another parameter. No functional changes. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=633b8b6d9f17cf8af3c3cc3386ae57e0ce21d6d1;p=clang Updating the documentation comment to list another parameter. No functional changes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@214856 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/Analyses/ThreadSafety.h b/include/clang/Analysis/Analyses/ThreadSafety.h index 153e83eafc..e299df1e49 100644 --- a/include/clang/Analysis/Analyses/ThreadSafety.h +++ b/include/clang/Analysis/Analyses/ThreadSafety.h @@ -163,8 +163,10 @@ public: /// Warn when acquiring a lock that the negative capability is not held. /// \param Kind -- the capability's name parameter (role, mutex, etc). - /// \param LockName -- A StringRef name for the lock expression, to be printed - /// in the error message. + /// \param LockName -- The name for the lock expression, to be printed in the + /// diagnostic. + /// \param Neg -- The name of the negative capability to be printed in the + /// diagnostic. /// \param Loc -- The location of the protected operation. virtual void handleNegativeNotHeld(StringRef Kind, Name LockName, Name Neg, SourceLocation Loc) {}