r188248 - AnalysisBasedWarnings.cpp:: Prune "\param VariableName", possibly copypasto, in comments. [-Wdocumentation]

NAKAMURA Takumi geek4civic at gmail.com
Mon Aug 12 18:53:21 PDT 2013


Author: chapuni
Date: Mon Aug 12 20:53:21 2013
New Revision: 188248

URL: http://llvm.org/viewvc/llvm-project?rev=188248&view=rev
Log:
AnalysisBasedWarnings.cpp:: Prune "\param VariableName", possibly copypasto, in comments. [-Wdocumentation]

Modified:
    cfe/trunk/include/clang/Analysis/Analyses/Consumed.h
    cfe/trunk/lib/Sema/AnalysisBasedWarnings.cpp

Modified: cfe/trunk/include/clang/Analysis/Analyses/Consumed.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/Analyses/Consumed.h?rev=188248&r1=188247&r2=188248&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/Analyses/Consumed.h (original)
+++ cfe/trunk/include/clang/Analysis/Analyses/Consumed.h Mon Aug 12 20:53:21 2013
@@ -51,9 +51,6 @@ namespace consumed {
     /// \param MethodName -- The name of the method that was incorrectly
     /// invoked.
     ///
-    /// \param VariableName -- The name of the variable that holds the unique
-    /// value.
-    ///
     /// \param Loc -- The SourceLocation of the method invocation.
     virtual void warnUseOfTempWhileConsumed(StringRef MethodName,
                                             SourceLocation Loc) {}
@@ -62,9 +59,6 @@ namespace consumed {
     /// \param MethodName -- The name of the method that was incorrectly
     /// invoked.
     ///
-    /// \param VariableName -- The name of the variable that holds the unique
-    /// value.
-    ///
     /// \param Loc -- The SourceLocation of the method invocation.
     virtual void warnUseOfTempInUnknownState(StringRef MethodName,
                                              SourceLocation Loc) {}

Modified: cfe/trunk/lib/Sema/AnalysisBasedWarnings.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/AnalysisBasedWarnings.cpp?rev=188248&r1=188247&r2=188248&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/AnalysisBasedWarnings.cpp (original)
+++ cfe/trunk/lib/Sema/AnalysisBasedWarnings.cpp Mon Aug 12 20:53:21 2013
@@ -1463,9 +1463,6 @@ public:
   /// \param MethodName -- The name of the method that was incorrectly
   /// invoked.
   /// 
-  /// \param VariableName -- The name of the variable that holds the unique
-  /// value.
-  ///
   /// \param Loc -- The SourceLocation of the method invocation.
   void warnUseOfTempWhileConsumed(StringRef MethodName, SourceLocation Loc) {
                                                     
@@ -1479,9 +1476,6 @@ public:
   /// \param MethodName -- The name of the method that was incorrectly
   /// invoked.
   ///
-  /// \param VariableName -- The name of the variable that holds the unique
-  /// value.
-  ///
   /// \param Loc -- The SourceLocation of the method invocation.
   void warnUseOfTempInUnknownState(StringRef MethodName, SourceLocation Loc) {
   





More information about the cfe-commits mailing list