Skip to content

Commit

Permalink
fix spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
SuzyWangIBMer committed Oct 17, 2023
1 parent ae085b3 commit 88df1ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/AggregateFunctions/AggregateFunctionMaxIntersections.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ class AggregateFunctionIntersectionsMax final
{
writePODBinary(value[i].first, buf);
writePODBinary(zero_padding, buf);
if constexpr (std::endian::native == std::endian::little)
writePODBinary(value[i].second, buf);
else
if constexpr (std::endian::native == std::endian::little)
writePODBinary(value[i].second, buf);
else
writePODBinary(std::byteswap(value[i].second), buf);
}
}
Expand Down

0 comments on commit 88df1ec

Please sign in to comment.