Fix unused variable warnings (#14643)
This commit is contained in:
parent
06324df072
commit
57ed063ba1
1 changed files with 3 additions and 0 deletions
|
@ -668,6 +668,8 @@ namespace ExtUI {
|
|||
&& (linked_nozzles || active_extruder == 0)
|
||||
#endif
|
||||
) zprobe_zoffset += mm;
|
||||
#else
|
||||
UNUSED(mm);
|
||||
#endif
|
||||
|
||||
#if EXTRUDERS > 1
|
||||
|
@ -687,6 +689,7 @@ namespace ExtUI {
|
|||
}
|
||||
#else
|
||||
UNUSED(linked_nozzles);
|
||||
UNUSED(mm);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue