mirror of https://github.com/MLXXXp/Arduboy2.git
Remove "inline" keywords and attributes
Optimization done by the compiler makes these unnecessary.
This commit is contained in:
parent
96b53875b5
commit
9bfb499169
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue