Skip to content

Commit 9dac213

Browse files
authored
Merge pull request #141 from abique/master
Fix for gcc 9.2, the constructor being explicit, must be explicitely …
2 parents 70c5303 + a42deb7 commit 9dac213

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simdpp/types/empty_expr.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ class mask_int32<N, expr_empty> : public any_int32<N, mask_int32<N,expr_empty>>
217217
SIMDPP_INL mask_int32(const mask_int32<N>& a) : e(a) {}
218218

219219
SIMDPP_INL operator mask_int32<N>() const { return e; }
220-
SIMDPP_INL operator uint32<N>() const { return e; }
220+
SIMDPP_INL operator uint32<N>() const { return uint32<N>(e); }
221221
SIMDPP_INL mask_int32<N> eval() const { return e; }
222222
};
223223

0 commit comments

Comments
 (0)