Commit 43c8b6d0 authored by Jianfeng yan's avatar Jianfeng yan
Browse files

minor change

parent 50fc7dde
......@@ -609,7 +609,7 @@ struct sequence_map_inverse
template <index_t... Xs, index_t... Ys>
__host__ __device__ constexpr bool operator==(Sequence<Xs...>, Sequence<Ys...>)
{
return (true && ... && (Xs == Ys));
return ((Xs == Ys) && ...);
}
template <index_t... Xs, index_t... Ys>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment