summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2016-10-07 13:25:41 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2016-10-07 13:25:41 +0000
commit12d6baf5e40ac16d70bd588d0b62ad53b945fe7e (patch)
tree538fa391053ca6deb29ea67a8ad801e1ef8b9e46
parent1c2c728ab15850333835d6fc32bc1a89c4ccb0b3 (diff)
downloadbcm5719-llvm-12d6baf5e40ac16d70bd588d0b62ad53b945fe7e.tar.gz
bcm5719-llvm-12d6baf5e40ac16d70bd588d0b62ad53b945fe7e.zip
Wdocumentation fix
llvm-svn: 283549
-rw-r--r--clang/include/clang/Sema/Sema.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/include/clang/Sema/Sema.h b/clang/include/clang/Sema/Sema.h
index 476631d7a8f..19426f58bca 100644
--- a/clang/include/clang/Sema/Sema.h
+++ b/clang/include/clang/Sema/Sema.h
@@ -8837,16 +8837,16 @@ public:
/// Check assignment constraints for an assignment of RHS to LHSType.
///
- /// \brief LHSType The destination type for the assignment.
- /// \brief RHS The source expression for the assignment.
- /// \brief Diagnose If \c true, diagnostics may be produced when checking
+ /// \param LHSType The destination type for the assignment.
+ /// \param RHS The source expression for the assignment.
+ /// \param Diagnose If \c true, diagnostics may be produced when checking
/// for assignability. If a diagnostic is produced, \p RHS will be
/// set to ExprError(). Note that this function may still return
/// without producing a diagnostic, even for an invalid assignment.
- /// \brief DiagnoseCFAudited If \c true, the target is a function parameter
+ /// \param DiagnoseCFAudited If \c true, the target is a function parameter
/// in an audited Core Foundation API and does not need to be checked
/// for ARC retain issues.
- /// \brief ConvertRHS If \c true, \p RHS will be updated to model the
+ /// \param ConvertRHS If \c true, \p RHS will be updated to model the
/// conversions necessary to perform the assignment. If \c false,
/// \p Diagnose must also be \c false.
AssignConvertType CheckSingleAssignmentConstraints(
OpenPOWER on IntegriCloud