diff options
Diffstat (limited to 'game/network/network.impl.h')
-rw-r--r-- | game/network/network.impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/network/network.impl.h b/game/network/network.impl.h index c683378..0a2f9ca 100644 --- a/game/network/network.impl.h +++ b/game/network/network.impl.h @@ -118,7 +118,7 @@ NetworkOf<T, Links...>::addCurve(const GeoData * geoData, const GenCurveDef & cu mergeClose(points, ::distance<3, GlobalDistance>, ::midpoint<3, GlobalDistance>, 2'000.F); std::ranges::transform(points | std::views::pairwise, std::back_inserter(out), [this, centre](const auto pair) { const auto [a, b] = pair; - return addLink<typename T::CurveLink>(a, b, centre); + return this->addLink<typename T::CurveLink>(a, b, centre); }); return out; } |