]> granicus.if.org Git - clang/commitdiff
Fix the \param comments to have the parameter name.
authorSamuel Benzaquen <sbenza@google.com>
Tue, 12 Aug 2014 21:49:59 +0000 (21:49 +0000)
committerSamuel Benzaquen <sbenza@google.com>
Tue, 12 Aug 2014 21:49:59 +0000 (21:49 +0000)
Summary: This fixes the build break introduced in rL215472

Reviewers: pcc

Subscribers: klimek, cfe-commits

Differential Revision: http://reviews.llvm.org/D4875

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@215476 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/ASTMatchers/Dynamic/Parser.h
include/clang/ASTMatchers/Dynamic/Registry.h
include/clang/ASTMatchers/Dynamic/VariantValue.h

index 6f6b4130f00feddd0403d005b51f4e98fea5b116..716b906accad133ea02466b43b2bb000c2b6d889 100644 (file)
@@ -109,7 +109,7 @@ public:
     /// \brief Compute the list of completions that match any of
     /// \p AcceptedTypes.
     ///
-    /// \param All types accepted for this completion.
+    /// \param AcceptedTypes All types accepted for this completion.
     ///
     /// \return All completions for the specified types.
     /// Completions should be valid when used in \c lookupMatcherCtor().
index 3551622f66d7cf0c5230c6853b5022f6eedd6ec3..4941360c822f43ee72c9d76b4dc4a5d813043f56 100644 (file)
@@ -81,7 +81,7 @@ public:
   /// \brief Compute the list of completions that match any of
   /// \p AcceptedTypes.
   ///
-  /// \param All types accepted for this completion.
+  /// \param AcceptedTypes All types accepted for this completion.
   ///
   /// \return All completions for the specified types.
   /// Completions should be valid when used in \c lookupMatcherCtor().
index baee72ccf4b7c9924a58548dc4b23320b5f10cfe..8b38ec8e5955e2d89aa13cdf09a791a32d28c048 100644 (file)
@@ -56,7 +56,8 @@ class ArgKind {
   ///
   /// \param To the requested destination type.
   ///
-  /// \param Value corresponding to the "specificity" of the convertion.
+  /// \param Specificity value corresponding to the "specificity" of the
+  ///   convertion.
   bool isConvertibleTo(ArgKind To, unsigned *Specificity) const;
 
   bool operator<(const ArgKind &Other) const {
@@ -166,7 +167,8 @@ public:
   ///
   /// \param Kind the requested destination type.
   ///
-  /// \param Value corresponding to the "specificity" of the convertion.
+  /// \param Specificity value corresponding to the "specificity" of the
+  ///   convertion.
   bool isConvertibleTo(ast_type_traits::ASTNodeKind Kind,
                        unsigned *Specificity) const {
     if (Value)
@@ -290,7 +292,8 @@ public:
   ///
   /// \param Kind the requested destination type.
   ///
-  /// \param Value corresponding to the "specificity" of the convertion.
+  /// \param Specificity value corresponding to the "specificity" of the
+  ///   convertion.
   bool isConvertibleTo(ArgKind Kind, unsigned* Specificity) const;
 
   /// \brief Determines if the contained value can be converted to any kind
@@ -298,8 +301,9 @@ public:
   ///
   /// \param Kinds the requested destination types.
   ///
-  /// \param Value corresponding to the "specificity" of the convertion. It is
-  /// the maximum specificity of all the possible conversions.
+  /// \param Specificity value corresponding to the "specificity" of the
+  ///   convertion. It is the maximum specificity of all the possible
+  ///   conversions.
   bool isConvertibleTo(ArrayRef<ArgKind> Kinds, unsigned *Specificity) const;
 
   /// \brief String representation of the type of the value.