From 69b8b31323eda1276e9d230d2527c9bbeb725b73 Mon Sep 17 00:00:00 2001 From: Alexey Bataev Date: Wed, 15 Jul 2015 07:53:08 +0000 Subject: [PATCH] Fix comments for several methods, NFC llvm-svn: 242272 --- clang/include/clang/Sema/Sema.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/clang/include/clang/Sema/Sema.h b/clang/include/clang/Sema/Sema.h index 45812f2f..4efc8ce 100644 --- a/clang/include/clang/Sema/Sema.h +++ b/clang/include/clang/Sema/Sema.h @@ -7698,11 +7698,12 @@ private: ExprResult VerifyPositiveIntegerConstantInClause(Expr *Op, OpenMPClauseKind CKind); public: - /// Checks if the specified variable is used in one of the private - /// clauses in OpenMP constructs. + /// \brief Check if the specified variable is used in one of the private + /// clauses (private, firstprivate, lastprivate, reduction etc.) in OpenMP + /// constructs. bool IsOpenMPCapturedVar(VarDecl *VD); - /// OpenMP constructs. + /// \brief Check if the specified variable is used in 'private' clause. /// \param Level Relative level of nested OpenMP construct for that the check /// is performed. bool isOpenMPPrivateVar(VarDecl *VD, unsigned Level); -- 2.7.4