Updating the documentation comment to list another parameter. No functional changes.
authorAaron Ballman <aaron@aaronballman.com>
Tue, 5 Aug 2014 11:48:21 +0000 (11:48 +0000)
committerAaron Ballman <aaron@aaronballman.com>
Tue, 5 Aug 2014 11:48:21 +0000 (11:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@214856 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/Analyses/ThreadSafety.h

index 153e83eafc8c44c8d2516053c82c2fee01114ccf..e299df1e49d74cd8afe88fb225bc00809cdd2df9 100644 (file)
@@ -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) {}