[NFC] Fixing a comment and some indentations

This commit is contained in:
sandeepkosuri 2022-11-10 01:02:12 -06:00 committed by Chi Chun Chen
parent 47b0758049
commit a86b506294
2 changed files with 3 additions and 3 deletions

View File

@ -7640,7 +7640,7 @@ class OMPOrderClause final : public OMPClause {
/// Location of '('.
SourceLocation LParenLoc;
/// A kind of the 'default' clause.
/// A kind of the 'order' clause.
OpenMPOrderClauseKind Kind = OMPC_ORDER_unknown;
/// Start location of the kind in source code.

View File

@ -44,11 +44,11 @@ public:
enum ScopeFlags {
/// This indicates that the scope corresponds to a function, which
/// means that labels are set here.
FnScope = 0x01,
FnScope = 0x01,
/// This is a while, do, switch, for, etc that can have break
/// statements embedded into it.
BreakScope = 0x02,
BreakScope = 0x02,
/// This is a while, do, for, which can have continue statements
/// embedded into it.