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

@@ -1,6 +1,7 @@
#include "ftxui/component/radiobox.hpp"
#include <functional>
#include <algorithm>
#include <functional>
namespace ftxui {
@@ -41,7 +42,7 @@ bool RadioBox::OnEvent(Event event) {
return true;
}
if (event == Event::Character(' ') || event==Event::Return) {
if (event == Event::Character(' ') || event == Event::Return) {
selected = focused;
on_change();
}