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)
llvm-svn: 214856

clang/include/clang/Analysis/Analyses/ThreadSafety.h

index 153e83e..e299df1 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) {}