Apply clang-format-11
[alexxy/gromacs.git] / src / gromacs / simd / impl_reference / impl_reference_simd4_float.h
index 81f81d2d839d22330a29620ef3e7b8a364088662..bd6d240e3f8e8e9d6abf706bb4f6366215873f7e 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2014,2015,2019, by the GROMACS development team, led by
+ * Copyright (c) 2014,2015,2019,2021, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -200,7 +200,8 @@ static inline Simd4Float gmx_simdcall operator&(Simd4Float a, Simd4Float b)
 {
     Simd4Float res;
 
-    union {
+    union
+    {
         float        r;
         std::int32_t i;
     } conv1, conv2;
@@ -228,7 +229,8 @@ static inline Simd4Float gmx_simdcall andNot(Simd4Float a, Simd4Float b)
 {
     Simd4Float res;
 
-    union {
+    union
+    {
         float        r;
         std::int32_t i;
     } conv1, conv2;
@@ -256,7 +258,8 @@ static inline Simd4Float gmx_simdcall operator|(Simd4Float a, Simd4Float b)
 {
     Simd4Float res;
 
-    union {
+    union
+    {
         float        r;
         std::int32_t i;
     } conv1, conv2;
@@ -283,7 +286,8 @@ static inline Simd4Float gmx_simdcall operator^(Simd4Float a, Simd4Float b)
 {
     Simd4Float res;
 
-    union {
+    union
+    {
         float        r;
         std::int32_t i;
     } conv1, conv2;