🧑‍💻 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

@@ -53,7 +53,7 @@ class Stopwatch {
* @return true on success
*/
static bool stop();
static inline bool abort() { return stop(); } // Alias by default
static bool abort() { return stop(); } // Alias by default
/**
* @brief Pause the stopwatch
@@ -114,7 +114,7 @@ class Stopwatch {
#else
static inline void debug(FSTR_P const) {}
static void debug(FSTR_P const) {}
#endif
};