浏览代码

🎨 Fix unused lambda warning (#22399)

Keith Bennett 2 年前
父节点
当前提交
2d4be74db9
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 5 次插入3 次删除
  1. 5
    3
      Marlin/src/module/probe.cpp

+ 5
- 3
Marlin/src/module/probe.cpp 查看文件

@@ -865,9 +865,11 @@ float Probe::probe_at_point(const_float_t rx, const_float_t ry, const ProbePtRai
865 865
       #if HAS_CURRENT_HOME(Z)
866 866
         static int16_t saved_current_Z;
867 867
       #endif
868
-      auto debug_current_on = [](PGM_P const s, const int16_t a, const int16_t b) {
869
-        if (DEBUGGING(LEVELING)) { DEBUG_ECHOPGM_P(s); DEBUG_ECHOLNPAIR(" current: ", a, " -> ", b); }
870
-      };
868
+      #if ((ENABLED(DELTA) && (HAS_CURRENT_HOME(X) || HAS_CURRENT_HOME(Y))) || HAS_CURRENT_HOME(Z))
869
+        auto debug_current_on = [](PGM_P const s, const int16_t a, const int16_t b) {
870
+          if (DEBUGGING(LEVELING)) { DEBUG_ECHOPGM_P(s); DEBUG_ECHOLNPAIR(" current: ", a, " -> ", b); }
871
+        };
872
+      #endif
871 873
       if (onoff) {
872 874
         #if ENABLED(DELTA)
873 875
           #if HAS_CURRENT_HOME(X)

正在加载...
取消
保存