🧑‍💻 Remove extraneous 'inline' hints

This commit is contained in:
Scott Lahteine
2021-12-28 02:57:24 -06:00
parent 33fa3aba10
commit 6fb2d8a25f
67 changed files with 537 additions and 537 deletions

View File

@@ -77,7 +77,7 @@
* @brief Resets the state of the class
* @details Brings the class state to a known one.
*/
static inline void reset() {
static void reset() {
off();
state.endtime = 0;
}
@@ -86,7 +86,7 @@
/**
* @brief Init Buzzer
*/
static inline void init() {
static void init() {
SET_OUTPUT(BEEPER_PIN);
reset();
}