From ab040a452ea545e494e683cd4a14e526d7a4ff42 Mon Sep 17 00:00:00 2001 From: ThomasDuquette <133025159+ThomasDuquette@users.noreply.github.com> Date: Fri, 5 Jun 2026 11:01:03 -0300 Subject: [PATCH] Fixed bug --- tests/benchmarks/bench_functions.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/benchmarks/bench_functions.cpp b/tests/benchmarks/bench_functions.cpp index 583f70c..5274a25 100644 --- a/tests/benchmarks/bench_functions.cpp +++ b/tests/benchmarks/bench_functions.cpp @@ -11,9 +11,9 @@ namespace blast { TEST_CASE("Benchmark of .at() vs [] for std::vector", "[general]") { std::vector capsules(250); Capsule caps; - caps.p1 = {1, 1, 1}; - caps.p2 = {2, 2, 2}; - caps.r = 2.0; + caps.p1 = {1, 1, 1}; + caps.p2 = {2, 2, 2}; + caps.radius = 2.0; for (auto& capsule: capsules) { capsule = caps; }