e0cffab768
* Introduce indexed list implementation * Fix CI tests for pool * Take bitset out of pool * Replace joker bitset interactions with wrappers * Add bitset tests * Add test to gitignore --------- Co-authored-by: rfehr-idexx <ric-fehr@idexx.com>
7 lines
132 B
C
7 lines
132 B
C
#include "pool.h"
|
|
|
|
#define POOL_ENTRY(name, capacity) \
|
|
POOL_DEFINE_TYPE(name, capacity);
|
|
#include POOLS_DEF_FILE
|
|
#undef POOL_ENTRY
|