diff options
Diffstat (limited to 'clang/lib/Format/TokenAnnotator.h')
-rw-r--r-- | clang/lib/Format/TokenAnnotator.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/clang/lib/Format/TokenAnnotator.h b/clang/lib/Format/TokenAnnotator.h index 9117ca3..16e920e 100644 --- a/clang/lib/Format/TokenAnnotator.h +++ b/clang/lib/Format/TokenAnnotator.h @@ -33,14 +33,16 @@ enum LineType { LT_VirtualFunctionDecl, LT_ArrayOfStructInitializer, LT_CommentAbovePPDirective, + LT_RequiresExpression, + LT_SimpleRequirement, }; enum ScopeType { - // Contained in child block. - ST_ChildBlock, // Contained in class declaration/definition. ST_Class, - // Contained within other scope block (function, loop, if/else, etc). + // Contained in compound requirement. + ST_CompoundRequirement, + // Contained in other blocks (function, lambda, loop, if/else, child, etc). ST_Other, }; |