[cfe-commits] r158506 - /cfe/trunk/include/clang/Analysis/Analyses/ThreadSafety.h

James Dennett jdennett at google.com
Fri Jun 15 01:35:42 PDT 2012


Author: jdennett
Date: Fri Jun 15 03:35:42 2012
New Revision: 158506

URL: http://llvm.org/viewvc/llvm-project?rev=158506&view=rev
Log:
Documentation cleanup: fix \params to match the code.

Modified:
    cfe/trunk/include/clang/Analysis/Analyses/ThreadSafety.h

Modified: cfe/trunk/include/clang/Analysis/Analyses/ThreadSafety.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/Analyses/ThreadSafety.h?rev=158506&r1=158505&r2=158506&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/Analyses/ThreadSafety.h (original)
+++ cfe/trunk/include/clang/Analysis/Analyses/ThreadSafety.h Fri Jun 15 03:35:42 2012
@@ -123,11 +123,11 @@
 
   /// Warn when a protected operation occurs while the specific mutex protecting
   /// the operation is not locked.
-  /// \param LockName -- A StringRef name for the lock expression, to be printed
-  /// in the error message.
   /// \param D -- The decl for the protected variable or function
   /// \param POK -- The kind of protected operation (e.g. variable access)
-  /// \param AK -- The kind of access (i.e. read or write) that occurred
+  /// \param LockName -- A StringRef name for the lock expression, to be printed
+  /// in the error message.
+  /// \param LK -- The kind of access (i.e. read or write) that occurred
   /// \param Loc -- The location of the protected operation.
   virtual void handleMutexNotHeld(const NamedDecl *D,
                                   ProtectedOperationKind POK, Name LockName,





More information about the cfe-commits mailing list