Formatted the entire codebase and added a CI check for formatting

This commit is contained in:
AlexandreRouma
2021-12-19 22:11:44 +01:00
parent 8644957881
commit ea587db0cb
161 changed files with 3302 additions and 3393 deletions

View File

@@ -8,7 +8,7 @@ using namespace nlohmann;
namespace sched_action {
class ActionClass {
public:
virtual ~ActionClass() {};
virtual ~ActionClass(){};
virtual void trigger() = 0;
virtual void prepareEditMenu() = 0;
virtual bool showEditMenu(bool& valid) = 0;
@@ -21,12 +21,12 @@ namespace sched_action {
}
bool selected = false;
private:
bool valid = false;
};
typedef std::shared_ptr<ActionClass> Action;
typedef std::shared_ptr<ActionClass> Action;
}
#include <actions/start_recorder.h>