Fix MBL line_to_destination

Fix #10708
This commit is contained in:
Scott Lahteine
2018-05-13 16:48:42 -05:00
parent ba4c32eec5
commit 836b0bbeee
2 changed files with 2 additions and 3 deletions

View File

@ -114,9 +114,8 @@ public:
;
}
// Support functions, which may be embedded in the class later
#if IS_CARTESIAN && DISABLED(SEGMENT_LEVELED_MOVES)
void line_to_destination(const float fr_mm_s, uint8_t x_splits=0xFF, uint8_t y_splits=0xFF);
static void line_to_destination(const float fr_mm_s, uint8_t x_splits=0xFF, uint8_t y_splits=0xFF);
#endif
};