mirror of
https://github.com/esphome/esphome.git
synced 2024-11-24 07:58:09 +01:00
Fix always_inline
This commit is contained in:
parent
d94ccb0bb9
commit
dec8c94de8
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ class Point {
|
||||||
int16_t y;
|
int16_t y;
|
||||||
|
|
||||||
Point() : x(VALUE_NO_SET), y(VALUE_NO_SET){};
|
Point() : x(VALUE_NO_SET), y(VALUE_NO_SET){};
|
||||||
inline Point(int16_t x, int16_t y) ALWAYS_INLINE : x(x), y(y){};
|
inline Point(int16_t x, int16_t y) ESPHOME_ALWAYS_INLINE : x(x), y(y){};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace display
|
} // namespace display
|
||||||
|
|
Loading…
Reference in a new issue