Change include guards in quantum/ to pragma once (#11239)

This commit is contained in:
Ryan 2020-12-26 15:53:12 +11:00 committed by GitHub
parent 53eb7f0774
commit 48f4768d33
Failed to generate hash of commit
50 changed files with 68 additions and 204 deletions

View file

@ -1,5 +1,4 @@
#ifndef VELOCIKEY_H
#define VELOCIKEY_H
#pragma once
#include <stdint.h>
#include <stdbool.h>
@ -9,5 +8,3 @@ void velocikey_toggle(void);
void velocikey_accelerate(void);
void velocikey_decelerate(void);
uint8_t velocikey_match_speed(uint8_t minValue, uint8_t maxValue);
#endif