p12tic / libsimdpp

Portable header-only C++ low level SIMD library
Boost Software License 1.0
1.24k stars 129 forks source link

unary operator-() is missing #111

Open peabody-korg opened 6 years ago

peabody-korg commented 6 years ago

expressions such as:

simdpp::float32x4 foo(simdpp::float32x4 a)
{
    return -a;
}

result in a compilation error.