Browse Source

Fix leveling_active_at_z warning

Scott Lahteine 6 years ago
parent
commit
0ceec1f166
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/planner.h

+ 1
- 1
Marlin/src/module/planner.h View File

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

Loading…
Cancel
Save