Set clang-format macro indent.

1) Set clang-format macro indent.
2) Run clang-format on every files.
This commit is contained in:
ArthurSonzogni
2020-03-23 21:26:00 +01:00
parent 9e71c467f6
commit 493e734680
30 changed files with 110 additions and 104 deletions

View File

@@ -7,10 +7,16 @@ namespace ftxui {
struct Requirement {
// The required size to fully draw the element.
struct { int x = 0; int y = 0; } min;
struct {
int x = 0;
int y = 0;
} min;
// How much flexibility is given to the component.
struct { int x = 0; int y = 0; } flex;
struct {
int x = 0;
int y = 0;
} flex;
// Frame.
enum Selection {
@@ -21,6 +27,6 @@ struct Requirement {
Box selected_box;
};
} // namespace ftxui
} // namespace ftxui
#endif /* end of include guard: FTXUI_REQUIREMENT_HPP */