From 4e16037acd3e55008101e6cfd4711a74e89f547a Mon Sep 17 00:00:00 2001 From: Benjamin Bannier Date: Fri, 5 Nov 2021 09:02:40 +0100 Subject: [PATCH] Format code with `clang-format` This patch formats files not conforming to the C++ formatting with `clang-format`. --- src/script_opt/CPP/RuntimeVec.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/script_opt/CPP/RuntimeVec.cc b/src/script_opt/CPP/RuntimeVec.cc index 3b8eff9c1f..c8279e7988 100644 --- a/src/script_opt/CPP/RuntimeVec.cc +++ b/src/script_opt/CPP/RuntimeVec.cc @@ -89,9 +89,9 @@ static VectorTypePtr base_vector_type__CPP(const VectorTypePtr& vt) #define VEC_OP1_WITH_DOUBLE(name, op) \ VEC_OP1( \ name, op, case TYPE_INTERNAL_DOUBLE \ - : \ - { \ - VEC_OP1_KERNEL(AsDouble, DoubleVal, op) break; \ + : { \ + VEC_OP1_KERNEL(AsDouble, DoubleVal, op) \ + break; \ }) // The unary operations supported for vectors. @@ -152,9 +152,9 @@ VEC_OP1(comp, ~, ) #define VEC_OP2_WITH_DOUBLE(name, op) \ VEC_OP2( \ name, op, case TYPE_INTERNAL_DOUBLE \ - : \ - { \ - VEC_OP2_KERNEL(AsDouble, DoubleVal, op) break; \ + : { \ + VEC_OP2_KERNEL(AsDouble, DoubleVal, op) \ + break; \ }) // The binary operations supported for vectors.