mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:10:06 +00:00
Boost zip iterator type deduction fix for gcc
This commit is contained in:
parent
d24918fbd5
commit
09cb64b84f
1 changed files with 3 additions and 1 deletions
|
|
@ -34,7 +34,9 @@ struct LinkedVectorDrawItem
|
||||||
boost::make_zip_iterator(
|
boost::make_zip_iterator(
|
||||||
boost::make_tuple(endI.begin(), endJ.begin())),
|
boost::make_tuple(endI.begin(), endJ.begin())),
|
||||||
boost::make_zip_iterator(boost::make_tuple(endI.end(), endJ.end())),
|
boost::make_zip_iterator(boost::make_tuple(endI.end(), endJ.end())),
|
||||||
[this, ¢er](const auto& p)
|
[this,
|
||||||
|
¢er](const boost::tuple<units::length::kilometers<double>,
|
||||||
|
units::length::kilometers<double>>& p)
|
||||||
{
|
{
|
||||||
coordinates_.push_back(util::GeographicLib::GetCoordinate(
|
coordinates_.push_back(util::GeographicLib::GetCoordinate(
|
||||||
center, p.get<0>(), p.get<1>()));
|
center, p.get<0>(), p.get<1>()));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue