Fix always_inline

This commit is contained in:
Jesse Hills 2024-08-06 22:29:37 +12:00
parent d94ccb0bb9
commit dec8c94de8
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A

View file

@ -11,7 +11,7 @@ class Point {
int16_t y;
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