Skip to content
Snippets Groups Projects

Fix alias syntax

Merged Tomohiro Yamazaki requested to merge toyamaza/athena:25.0.25-fixVec into main
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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
};
Loading