Remove "inline" keywords and attributes

Optimization done by the compiler makes these unnecessary.
This commit is contained in:
Scott Allen 2017-04-17 16:31:46 -04:00
parent f0dc4d0de5
commit 070a364741
1 changed files with 5 additions and 5 deletions

View File

@ -309,7 +309,7 @@ class Arduboy2Core
*
* \see LCDDataMode() LCDCommandMode() sendLCDCommand()
*/
void static inline SPItransfer(uint8_t data);
void static SPItransfer(uint8_t data);
/** \brief
* Get the width of the display in pixels.
@ -649,10 +649,10 @@ class Arduboy2Core
protected:
// internals
void static inline setCPUSpeed8MHz() __attribute__((always_inline));
void static inline bootOLED() __attribute__((always_inline));
void static inline bootPins() __attribute__((always_inline));
void static inline bootPowerSaving() __attribute__((always_inline));
void static setCPUSpeed8MHz();
void static bootOLED();
void static bootPins();
void static bootPowerSaving();
};
#endif