aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/ASTContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/AST/ASTContext.h')
-rw-r--r--include/clang/AST/ASTContext.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h
index 5555e97a8c..3c283bc8f5 100644
--- a/include/clang/AST/ASTContext.h
+++ b/include/clang/AST/ASTContext.h
@@ -1325,8 +1325,8 @@ public:
/// for some targets.
QualType getVaListTagType() const;
- /// \brief Return a type with additional \c const, \c volatile, or \crestrict
- /// qualifiers.
+ /// \brief Return a type with additional \c const, \c volatile, or
+ /// \c restrict qualifiers.
QualType getCVRQualifiedType(QualType T, unsigned CVR) const {
return getQualifiedType(T, Qualifiers::fromCVRMask(CVR));
}
@@ -1756,8 +1756,8 @@ public:
/// \brief Return a real floating point or a complex type (based on
/// \p typeDomain/\p typeSize).
///
- /// \arg typeDomain a real floating point or complex type.
- /// \arg typeSize a real floating point or complex type.
+ /// \param typeDomain a real floating point or complex type.
+ /// \param typeSize a real floating point or complex type.
QualType getFloatingTypeOfSizeWithinDomain(QualType typeSize,
QualType typeDomain) const;