Skip to content

Commit af60e1f

Browse files
authored
Fix encoded_uint_vector_test for 32-bit target (#182)
1 parent 0c4c460 commit af60e1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/s2/encoded_uint_vector_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ using std::vector;
2424

2525
namespace s2coding {
2626

27-
static_assert(sizeof(EncodedUintVector<uint64>) == 16, "too big");
27+
static_assert(sizeof(EncodedUintVector<uint64>) <= 16, "too big");
2828

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

0 commit comments

Comments
 (0)