Skip to content

Commit

Permalink
Merge pull request p12tic#141 from abique/master
Browse files Browse the repository at this point in the history
Fix for gcc 9.2, the constructor being explicit, must be explicitely …
  • Loading branch information
p12tic authored and peabody-korg committed Mar 23, 2022
1 parent 8576643 commit c5aa73b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simdpp/types/empty_expr.h
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class mask_int32<N, expr_empty> : public any_int32<N, mask_int32<N,expr_empty>>
SIMDPP_INL mask_int32(const mask_int32<N>& a) : e(a) {}

SIMDPP_INL operator mask_int32<N>() const { return e; }
SIMDPP_INL operator uint32<N>() const { return e; }
SIMDPP_INL operator uint32<N>() const { return uint32<N>(e); }
SIMDPP_INL mask_int32<N> eval() const { return e; }
};

Expand Down

0 comments on commit c5aa73b

Please sign in to comment.