From 176b46663fe8020d6be1d191646a40c2ff4a092b Mon Sep 17 00:00:00 2001 From: Mingxin Wang Date: Mon, 13 Apr 2026 21:17:40 +0800 Subject: [PATCH] Fix typo in benchmarks --- benchmarks/proxy_operation_benchmark.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/proxy_operation_benchmark.cpp b/benchmarks/proxy_operation_benchmark.cpp index 9c21576..fd7b7ee 100644 --- a/benchmarks/proxy_operation_benchmark.cpp +++ b/benchmarks/proxy_operation_benchmark.cpp @@ -121,7 +121,7 @@ void BM_LargeObjectInvocationViaVirtualFunction(benchmark::State& state) { void BM_LargeObjectInvocationViaVirtualFunction_Shared( benchmark::State& state) { - auto data = GenerateLargeObjectVirtualFunctionTestData(); + auto data = GenerateLargeObjectVirtualFunctionTestData_Shared(); for (auto _ : state) { for (auto& p : data) { int result = p->Fun();