No default needed

This commit is contained in:
Scott Lahteine 2018-01-03 22:52:25 -06:00
parent c5e31b1723
commit 46a839cbca

View File

@ -1545,7 +1545,7 @@ inline void buffer_line_to_current_position() {
* Move the planner to the position stored in the destination array, which is
* used by G0/G1/G2/G3/G5 and many other functions to set a destination.
*/
inline void buffer_line_to_destination(const float &fr_mm_s=feedrate_mm_s) {
inline void buffer_line_to_destination(const float &fr_mm_s) {
planner.buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], fr_mm_s, active_extruder);
}