From 61492a5c5e5b98821f0763fbab825fc8502af849 Mon Sep 17 00:00:00 2001 From: Themis Skamagkis Date: Tue, 15 Jul 2025 14:31:42 +0200 Subject: [PATCH] [DetectionOutput] Corrects the call to the end iterator of the encapsulated PairDetection vector --- src/sofa/collisionAlgorithm/DataDetectionOutput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sofa/collisionAlgorithm/DataDetectionOutput.h b/src/sofa/collisionAlgorithm/DataDetectionOutput.h index d0a42451..57080b6d 100644 --- a/src/sofa/collisionAlgorithm/DataDetectionOutput.h +++ b/src/sofa/collisionAlgorithm/DataDetectionOutput.h @@ -34,7 +34,7 @@ class DetectionOutput { } typename sofa::type::vector::const_iterator end() const { - return m_output.begin(); + return m_output.end(); } unsigned size() const {