Skip to content

Commit

Permalink
🩹 Fix EXTRUDER 0 compile warning (#22868)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellensp authored Oct 4, 2021
1 parent 2d08afe commit b919bdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/module/stepper.h
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ class Stepper {
static void disable_e_steppers();
#else
static inline void enable_extruder() {}
static inline bool disable_extruder() {}
static inline bool disable_extruder() { return true; }
static inline void enable_e_steppers() {}
static inline void disable_e_steppers() {}
#endif
Expand Down

0 comments on commit b919bdb

Please sign in to comment.