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 96b53875b5
commit 9bfb499169
1 changed files with 5 additions and 5 deletions

View File

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