clang  9.0.0
IncludeStyle.cpp
Go to the documentation of this file.
1 //===--- IncludeStyle.cpp - Style of C++ #include directives -----*- C++-*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
10 
12 
13 namespace llvm {
14 namespace yaml {
15 
16 void MappingTraits<IncludeStyle::IncludeCategory>::mapping(
17  IO &IO, IncludeStyle::IncludeCategory &Category) {
18  IO.mapOptional("Regex", Category.Regex);
19  IO.mapOptional("Priority", Category.Priority);
20 }
21 
22 void ScalarEnumerationTraits<IncludeStyle::IncludeBlocksStyle>::enumeration(
23  IO &IO, IncludeStyle::IncludeBlocksStyle &Value) {
24  IO.enumCase(Value, "Preserve", IncludeStyle::IBS_Preserve);
25  IO.enumCase(Value, "Merge", IncludeStyle::IBS_Merge);
26  IO.enumCase(Value, "Regroup", IncludeStyle::IBS_Regroup);
27 }
28 
29 } // namespace yaml
30 } // namespace llvm
Specialize PointerLikeTypeTraits to allow LazyGenerationalUpdatePtr to be placed into a PointerUnion...
Definition: Dominators.h:30
int Category
Definition: Format.cpp:1714
Style for sorting and grouping C++ #include directives.
Definition: IncludeStyle.h:20