Tweak some lambdas

This commit is contained in:
Scott Lahteine
2020-03-18 10:30:19 -05:00
parent 252178fe62
commit abea6d5787
4 changed files with 4 additions and 4 deletions

View File

@ -1611,7 +1611,7 @@
* numbers for those locations should be 0.
*/
#ifdef VALIDATE_MESH_TILT
auto d_from = []() { DEBUG_ECHOPGM("D from "); };
auto d_from = []{ DEBUG_ECHOPGM("D from "); };
auto normed = [&](const xy_pos_t &pos, const float &zadd) {
return normal.x * pos.x + normal.y * pos.y + zadd;
};