Parcourir la source

Fix leveling_active_at_z warning

Scott Lahteine il y a 6 ans
Parent
révision
0ceec1f166
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      Marlin/src/module/planner.h

+ 1
- 1
Marlin/src/module/planner.h Voir le fichier

@@ -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
 

Chargement…
Annuler
Enregistrer