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:
parent
eb02f8c719
commit
0ceec1f166
1 changed files with 1 additions and 1 deletions
|
@ -308,7 +308,7 @@ class Planner {
|
|||
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue