From dd48c02a032be5afd0ca49bcb1021abfaf53977d Mon Sep 17 00:00:00 2001
From: christos <christos@cern.ch>
Date: Sat, 10 Oct 2020 04:03:20 +0100
Subject: [PATCH] vec.h remove double ;

---
 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 db70b62758b..3ab1c057ea2 100644
--- a/Control/CxxUtils/CxxUtils/vec.h
+++ b/Control/CxxUtils/CxxUtils/vec.h
@@ -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];
-- 
GitLab