Skip to content

Commit

Permalink
Fix name in equality for scalar info
Browse files Browse the repository at this point in the history
  • Loading branch information
inakleinbottle committed Oct 24, 2023
1 parent 6ecda77 commit 3542cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scalars/include/roughpy/scalars/scalars_fwd.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ using conversion_function
constexpr bool
operator==(const BasicScalarInfo& lhs, const BasicScalarInfo& rhs) noexcept
{
return lhs.code == rhs.code && lhs.bits == rhs.bits
return lhs.code == rhs.code && lhs.bytes == rhs.bytes
&& lhs.lanes == rhs.lanes;
}

Expand Down

0 comments on commit 3542cd9

Please sign in to comment.