Explorar el Código

Fix leveling_active_at_z warning

Scott Lahteine hace 6 años
padre
commit
0ceec1f166
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/src/module/planner.h

+ 1
- 1
Marlin/src/module/planner.h Ver fichero

@@ -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…
Cancelar
Guardar