Skip to content
Snippets Groups Projects
Commit 2791ec36 authored by Edward Moyse's avatar Edward Moyse
Browse files

Merge branch 'vec_remove_extra_semicolon' into 'master'

vec.h remove double semicolon

See merge request atlas/athena!37173
parents dc56bece dd48c02a
No related branches found
No related tags found
No related merge requests found
......@@ -557,7 +557,7 @@ vblend(VEC& dst, const VEC& src1, const VEC& src2)
"blend indices outside allowed range");
#if !HAVE_VECTOR_SIZE_ATTRIBUTE || WANT_VECTOR_FALLBACK
size_t pos{ 0 };;
size_t pos{ 0 };
for (size_t i : { Indices... }) {
if (i < N) {
dst[pos] = src1[i];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment