diff --git a/particle_test.c b/particle_test.c index 7cb37fe..43fbb12 100644 --- a/particle_test.c +++ b/particle_test.c @@ -8,6 +8,7 @@ static const Vector2 GRAVITY = {0, GRAV_ACCEL}; void simple_particle_system_update(Particle_t* part, void* user_data) { + (void)user_data; float delta_time = DELTA_T; // TODO: Will need to think about delta time handling part->rotation += part->angular_vel; diff --git a/tests/test_mempool.c b/tests/test_mempool.c index 1d4d965..dc14e2d 100644 --- a/tests/test_mempool.c +++ b/tests/test_mempool.c @@ -9,18 +9,24 @@ static int setup_mempool(void** state) { + (void)state; + init_memory_pools(); return 0; } static int teardown_mempool(void** state) { + (void)state; + free_memory_pools(); return 0; } static void test_simple_get_and_free(void **state) { + (void)state; + unsigned long idx; Entity_t* ent = new_entity_from_mempool(&idx);