[NFC] Fixing a comment and some indentations
This commit is contained in:
parent
47b0758049
commit
a86b506294
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue