Skip to content

Commit

Permalink
Fix compilation error due to function mismatch.
Browse files Browse the repository at this point in the history
  • Loading branch information
marciot committed Mar 31, 2021
1 parent d07e958 commit b53d4c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/bedlevel/G26.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ typedef struct {

#if ENABLED(UBL_HILBERT_CURVE)

auto test_func = [](uint8_t i, uint8_t j, void *data) {
auto test_func = [](uint8_t i, uint8_t j, void *data) -> bool {
if (!circle_flags.marked(i, j)) {
mesh_index_pair *out_point = (mesh_index_pair*)data;
out_point->pos.set(i, j); // Save its data
Expand Down

0 comments on commit b53d4c6

Please sign in to comment.