From 62d164ef8a3015fad563feb786cf8963913c0808 Mon Sep 17 00:00:00 2001 From: Matt Williams Date: Fri, 10 May 2013 09:44:15 +0100 Subject: [PATCH] Remove unnecessary assignment. --- library/PolyVoxCore/include/PolyVoxCore/Picking.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/PolyVoxCore/include/PolyVoxCore/Picking.inl b/library/PolyVoxCore/include/PolyVoxCore/Picking.inl index bb23af2b..c776ee00 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/Picking.inl +++ b/library/PolyVoxCore/include/PolyVoxCore/Picking.inl @@ -77,7 +77,7 @@ namespace PolyVox { RaycastPickingFunctor functor(emptyVoxelExample); - RaycastResult raycastResult = raycastWithDirection(volData, v3dStart, v3dDirectionAndLength, functor); + raycastWithDirection(volData, v3dStart, v3dDirectionAndLength, functor); return functor.m_result; }