Commit d3320a04 authored by Davis King's avatar Davis King

A minor change to avoid a compiler error in clang

parent 872cee33
......@@ -42,6 +42,8 @@ namespace dlib
inline void load(const type* ptr) { x = _mm256_loadu_ps(ptr); }
inline void store(type* ptr) const { _mm256_storeu_ps(ptr, x); }
inline simd8f& operator=(const simd8i& rhs) { *this = simd8f(rhs); return *this; }
inline unsigned int size() const { return 8; }
inline float operator[](unsigned int idx) const
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment