Browse Source

Fix leveling_active_at_z warning

pull/1/head
Scott Lahteine 7 years ago
parent
commit
0ceec1f166
  1. 2
      Marlin/src/module/planner.h

2
Marlin/src/module/planner.h

@ -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…
Cancel
Save