From 6bbfb9e46a7b1a552976020f737f33974f239834 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 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@242272 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Sema/Sema.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index 45812f2f96..4efc8cea5a 100644 --- a/include/clang/Sema/Sema.h +++ b/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.40.0