From 43823c8fdca4f5c5b0684bb7df409489a34d2883 Mon Sep 17 00:00:00 2001 From: Orange Date: Sun, 14 Jun 2026 23:26:24 +0300 Subject: [PATCH] fix --- include/omath/projection/camera.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/omath/projection/camera.hpp b/include/omath/projection/camera.hpp index a753341..050be14 100644 --- a/include/omath/projection/camera.hpp +++ b/include/omath/projection/camera.hpp @@ -463,7 +463,7 @@ namespace omath::projection world_to_view_port(const Vector3& world_position, const ViewPortClipping& clipping = ViewPortClipping::AUTO) const noexcept { - auto project_to_view_port = [this, &clipping](auto projected) -> std::expected, Error> + auto project_to_view_port = [&clipping](auto projected) -> std::expected, Error> { const auto& w = projected.at(3, 0); constexpr auto eps = std::numeric_limits::epsilon();