Author: Simon Pilgrim
Date: 2020-08-11T12:52:37+01:00
New Revision: ee17f72e13b839001a6e8a77e767d5b15d2bd4d1

URL: 
https://github.com/llvm/llvm-project/commit/ee17f72e13b839001a6e8a77e767d5b15d2bd4d1
DIFF: 
https://github.com/llvm/llvm-project/commit/ee17f72e13b839001a6e8a77e767d5b15d2bd4d1.diff

LOG: Fix Wdocumentation unknown param warning. NFC.

Added: 
    

Modified: 
    clang/include/clang/AST/DeclOpenMP.h

Removed: 
    


################################################################################
diff  --git a/clang/include/clang/AST/DeclOpenMP.h 
b/clang/include/clang/AST/DeclOpenMP.h
index a035de1e20e2..e595ec98d914 100644
--- a/clang/include/clang/AST/DeclOpenMP.h
+++ b/clang/include/clang/AST/DeclOpenMP.h
@@ -43,9 +43,6 @@ template <typename U> class OMPDeclarativeDirective : public 
U {
   OMPChildren *Data = nullptr;
 
   /// Build instance of directive.
-  ///
-  /// \param StartLoc Starting location of the directive (directive keyword).
-  ///
   template <typename... Params>
   OMPDeclarativeDirective(Params &&... P) : U(std::forward<Params>(P)...) {}
 


        
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to