Browse Source

Suppress a compile warning

pull/1/head
Scott Lahteine 6 years ago
parent
commit
028b78f623
  1. 2
      Marlin/src/feature/power_loss_recovery.h

2
Marlin/src/feature/power_loss_recovery.h

@ -128,7 +128,7 @@ class PrintJobRecovery {
#if ENABLED(DEBUG_POWER_LOSS_RECOVERY)
static void debug(PGM_P const prefix);
#else
static inline void debug(PGM_P const prefix) {}
static inline void debug(PGM_P const prefix) { UNUSED(prefix); }
#endif
private:

Loading…
Cancel
Save