Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for gcc 9.2, the constructor being explicit, must be explicitely … #141

Merged
merged 1 commit into from
Jan 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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