fix: Visual Studio caught up with terse form of constraints

This commit is contained in:
Mateusz Pusz
2021-03-12 23:06:11 +01:00
parent a91e234c90
commit 069712b222
5 changed files with 15 additions and 19 deletions

View File

@ -153,7 +153,7 @@ void estimate(timestamp start_ts, const glider& g, const weather& w, const task&
// circle in a thermall to gain height
pos = circle(start_ts, pos, g, w, t, height_to_gain);
} while (height_to_gain > height(0 * m));
} while (height_to_gain > height{});
// final glide
pos = final_glide(start_ts, pos, g, t);