mirror of
https://github.com/vale981/tdesktop
synced 2025-03-05 09:41:41 -05:00
change deprecated ranges::to_ to ranges::to (no underscore)
This commit is contained in:
parent
56aab1aa07
commit
497df7f4b2
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ std::string Layouter::CountProportions(const std::vector<float64> &ratios) {
|
|||
ratios
|
||||
) | ranges::view::transform([](float64 ratio) {
|
||||
return (ratio > 1.2) ? 'w' : (ratio < 0.8) ? 'n' : 'q';
|
||||
}) | ranges::to_<std::string>();
|
||||
}) | ranges::to<std::string>();
|
||||
}
|
||||
|
||||
std::vector<GroupMediaLayout> Layouter::layout() const {
|
||||
|
|
Loading…
Add table
Reference in a new issue