From 8fc0dafee2171292f97b28182f9b86b71dc9e677 Mon Sep 17 00:00:00 2001 From: Richard Thier Date: Sat, 6 Dec 2025 16:25:17 +0100 Subject: [PATCH] fixed wrong struct name --- vmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmap.h b/vmap.h index 0d9bf41..b362de5 100644 --- a/vmap.h +++ b/vmap.h @@ -54,7 +54,7 @@ struct vmap_find_res { /** Meta-data for continuation of the search. Last value found in lastly looked lane. */ uint32_t last_found_lane_val; }; -typedef struct simd_map_find_res simd_map_find_res; +typedef struct vmap_find_res vmap_find_res; /* INTAPI */