Skip to content
Snippets Groups Projects
Commit 32a14b8d authored by Daniel Lindblad's avatar Daniel Lindblad
Browse files

Fixed Clang formatting for MR!1388

parent 79d2c289
No related branches found
No related tags found
No related merge requests found
......@@ -62,9 +62,6 @@ template <typename scalarType, int width = 0> struct avx2
#if defined(__AVX2__) && defined(NEKTAR_ENABLE_SIMD_AVX2)
// forward declaration of concrete types
template <typename T> struct avx2Long4;
template <typename T> struct avx2Int8;
......@@ -184,7 +181,7 @@ template <typename T> struct avx2Int8
}
// copy assignment
inline avx2Int8& operator=(const avx2Int8&) = default;
inline avx2Int8 &operator=(const avx2Int8 &) = default;
// store
inline void store(scalarType *p) const
......@@ -294,7 +291,7 @@ template <typename T> struct avx2Long4
}
// copy assignment
inline avx2Long4& operator=(const avx2Long4&) = default;
inline avx2Long4 &operator=(const avx2Long4 &) = default;
// store
inline void store(scalarType *p) const
......@@ -398,7 +395,7 @@ struct avx2Double4
}
// copy assignment
inline avx2Double4& operator=(const avx2Double4&) = default;
inline avx2Double4 &operator=(const avx2Double4 &) = default;
// store
inline void store(scalarType *p) const
......@@ -668,7 +665,7 @@ struct avx2Float8
}
// copy assignment
inline avx2Float8& operator=(const avx2Float8&) = default;
inline avx2Float8 &operator=(const avx2Float8 &) = default;
// store
inline void store(scalarType *p) const
......
......@@ -182,7 +182,7 @@ template <typename T> struct avx512Int16
}
// copy assignment
inline avx512Int16& operator=(const avx512Int16&) = default;
inline avx512Int16 &operator=(const avx512Int16 &) = default;
// store
inline void store(scalarType *p) const
......@@ -297,7 +297,7 @@ template <typename T> struct avx512Long8
}
// copy assignment
inline avx512Long8& operator=(const avx512Long8&) = default;
inline avx512Long8 &operator=(const avx512Long8 &) = default;
// store
inline void store(scalarType *p) const
......@@ -406,7 +406,7 @@ struct avx512Double8
}
// copy assignment
inline avx512Double8& operator=(const avx512Double8&) = default;
inline avx512Double8 &operator=(const avx512Double8 &) = default;
// store
inline void store(scalarType *p) const
......@@ -668,7 +668,7 @@ struct avx512Float16
}
// copy assignment
inline avx512Float16& operator=(const avx512Float16&) = default;
inline avx512Float16 &operator=(const avx512Float16 &) = default;
// store
inline void store(scalarType *p) const
......
......@@ -127,7 +127,7 @@ template <typename T, typename> struct scalarT
}
// copy assignment
inline scalarT& operator=(const scalarT&) = default;
inline scalarT &operator=(const scalarT &) = default;
// store
inline void store(scalarType *p) const
......
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