Skip to content
Snippets Groups Projects
Commit a6b76abd authored by Ilya Verbin's avatar Ilya Verbin Committed by Vladimir Davydov
Browse files

bitset: fix compilation on macOS 12

Asserts are disabled in the Release build, that leads to:

$ cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS=-Werror
$ make

[ 43%] Building C object src/lib/bitset/CMakeFiles/bitset.dir/bitset.c.o
src/lib/bitset/bitset.c:169:9: error: variable 'cardinality_check' set but not used [-Werror,-Wunused-but-set-variable]
        size_t cardinality_check = 0;
               ^

NO_DOC=build fix
NO_TEST=build fix
NO_CHANGELOG=build fix
parent d06b5f8a
No related branches found
No related tags found
No related merge requests found
......@@ -174,6 +174,7 @@ tt_bitset_info(struct tt_bitset *bitset, struct tt_bitset_info *info)
page = tt_bitset_pages_next(&bitset->pages, page);
}
(void)cardinality_check;
assert(tt_bitset_cardinality(bitset) == cardinality_check);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment