Skip to content

Commit

Permalink
Fix encoded_uint_vector_test for 32-bit target (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
podsvirov authored Apr 18, 2021
1 parent 0c4c460 commit af60e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/s2/encoded_uint_vector_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ using std::vector;

namespace s2coding {

static_assert(sizeof(EncodedUintVector<uint64>) == 16, "too big");
static_assert(sizeof(EncodedUintVector<uint64>) <= 16, "too big");

template <class T>
void TestEncodedUintVector(const vector<T>& expected, size_t expected_bytes) {
Expand Down

0 comments on commit af60e1f

Please sign in to comment.