0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-21 08:53:59 +00:00

Fix leveling_active_at_z warning

This commit is contained in:
Scott Lahteine 2017-10-26 22:19:23 -05:00
parent eb02f8c719
commit 0ceec1f166

View file

@ -308,7 +308,7 @@ class Planner {
return 1.0; return 1.0;
} }
FORCE_INLINE static bool leveling_active_at_z(const float &lz) { return true; } FORCE_INLINE static bool leveling_active_at_z(const float &lz) { UNUSED(lz); return true; }
#endif #endif