Fix compiler warning: sketch/mesh_bed_leveling.cpp:24:6: warning: unused parameter 'use_default' [-Wunused-parameter].
This commit is contained in:
parent
aa0f1fd80b
commit
4c146a5b2c
|
|
@ -21,7 +21,7 @@ static inline bool vec_undef(const float v[2])
|
||||||
return vx[0] == 0x0FFFFFFFF || vx[1] == 0x0FFFFFFFF;
|
return vx[0] == 0x0FFFFFFFF || vx[1] == 0x0FFFFFFFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
void mesh_bed_leveling::get_meas_xy(int ix, int iy, float &x, float &y, bool use_default)
|
void mesh_bed_leveling::get_meas_xy(int ix, int iy, float &x, float &y, bool /*use_default*/)
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
float cntr[2] = {
|
float cntr[2] = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue