Skip to content

Commit

Permalink
Merge pull request #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 committed Jan 30, 2020
2 parents 70c5303 + a42deb7 commit 9dac213
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 9dac213

Please sign in to comment.