From 723e031629914de9618967fa26c1611a0679e73d Mon Sep 17 00:00:00 2001
From: Tomohiro Yamazaki <tomohiro.yamazaki@cern.ch>
Date: Wed, 12 Feb 2025 19:41:18 +0000
Subject: [PATCH] Fix alias syntax

---
 Control/CxxUtils/CxxUtils/vec.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Control/CxxUtils/CxxUtils/vec.h b/Control/CxxUtils/CxxUtils/vec.h
index 42cb377e86db..e41ba8962776 100644
--- a/Control/CxxUtils/CxxUtils/vec.h
+++ b/Control/CxxUtils/CxxUtils/vec.h
@@ -163,7 +163,7 @@ struct vec_typedef {
 #if HAVE_VECTOR_SIZE_ATTRIBUTE
   using type __attribute__((vector_size(N * sizeof(T)))) = T;
 #else
-  using type vec_fb<T, N>;
+  using type = vec_fb<T, N>;
 #endif
 };
 
-- 
GitLab