astyle with current project style guidelines

pull/365/head
Jesse Vincent 7 years ago
parent 5ba8fe34bb
commit b0dbab8848
No known key found for this signature in database
GPG Key ID: 122F5DF7108E4046

@ -1,10 +1,10 @@
#include "Kaleidoscope-LEDEffect-Chase.h" #include "Kaleidoscope-LEDEffect-Chase.h"
LEDChaseEffect_::LEDChaseEffect_ (void) { LEDChaseEffect_::LEDChaseEffect_(void) {
} }
void void
LEDChaseEffect_::update (void) { LEDChaseEffect_::update(void) {
if (current_chase_counter++ < chase_threshold) { if (current_chase_counter++ < chase_threshold) {
return; return;
} }

@ -5,9 +5,9 @@
class LEDChaseEffect_ : public LEDMode { class LEDChaseEffect_ : public LEDMode {
public: public:
LEDChaseEffect_ (void); LEDChaseEffect_(void);
virtual void update (void) final; virtual void update(void) final;
private: private:
uint8_t pos = 0; uint8_t pos = 0;

Loading…
Cancel
Save