Skip to content

Commit

Permalink
update return types
Browse files Browse the repository at this point in the history
  • Loading branch information
ellensp committed Oct 23, 2023
1 parent d5024a7 commit a98df65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/feature/repeat.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class Repeat {
static void loop();
static void cancel();
static uint8_t get_index() { return index; }
static uint8_t get_marker_sdpos(uint8_t i) { return marker[i].sdpos; }
static uint8_t get_marker_counter(uint8_t i) { return marker[i].counter; }
static int16_t get_marker_counter(uint8_t i) { return marker[i].counter; }
static uint32_t get_marker_sdpos(uint8_t i) { return marker[i].sdpos; }
};

extern Repeat repeat;

0 comments on commit a98df65

Please sign in to comment.