Skip to content

Commit

Permalink
MSVC: resolve confusion about Mask type
Browse files Browse the repository at this point in the history
MSVC thinks I meant Vc::Mask<T, Abi>. But what I really meant was the
Mask member type of Vector. All other C++ compilers understood this...

Signed-off-by: Matthias Kretz <kretz@kde.org>
  • Loading branch information
mattkretz committed Sep 20, 2016
1 parent 89bb12c commit d418cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scalar/vector.tcc
Expand Up @@ -206,7 +206,7 @@ template<typename T> Vc_INTRINSIC void Vector<T, VectorAbi::Scalar>::setQnan(Mas
setQnan();
}
}
template<> Vc_INTRINSIC void Scalar::double_v::setQnan(Mask m)
template<> Vc_INTRINSIC void Scalar::double_v::setQnan(Scalar::double_v::Mask m)
{
if (m.data()) {
setQnan();
Expand Down

0 comments on commit d418cc5

Please sign in to comment.