Skip to content

Commit

Permalink
Fix double semicolon's
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroErrors committed Jul 18, 2023
1 parent e840485 commit 973fcf7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions flecs.c
Original file line number Diff line number Diff line change
Expand Up @@ -11416,7 +11416,7 @@ ecs_page_t* flecs_sparse_get_page(
if (page_index >= ecs_vec_count(&sparse->pages)) {
return NULL;
}
return ecs_vec_get_t(&sparse->pages, ecs_page_t, page_index);;
return ecs_vec_get_t(&sparse->pages, ecs_page_t, page_index);
}

static
Expand Down Expand Up @@ -17816,7 +17816,7 @@ void flecs_run_pipeline(

ecs_assert(!stage_index, ECS_INVALID_OPERATION, NULL);

bool multi_threaded = ecs_get_stage_count(world) > 1;;
bool multi_threaded = ecs_get_stage_count(world) > 1;

// Update the pipeline the workers will execute
world->pq = pq;
Expand Down
2 changes: 1 addition & 1 deletion src/addons/pipeline/pipeline.c
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ void flecs_run_pipeline(

ecs_assert(!stage_index, ECS_INVALID_OPERATION, NULL);

bool multi_threaded = ecs_get_stage_count(world) > 1;;
bool multi_threaded = ecs_get_stage_count(world) > 1;

// Update the pipeline the workers will execute
world->pq = pq;
Expand Down
2 changes: 1 addition & 1 deletion src/datastructures/sparse.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ ecs_page_t* flecs_sparse_get_page(
if (page_index >= ecs_vec_count(&sparse->pages)) {
return NULL;
}
return ecs_vec_get_t(&sparse->pages, ecs_page_t, page_index);;
return ecs_vec_get_t(&sparse->pages, ecs_page_t, page_index);
}

static
Expand Down

0 comments on commit 973fcf7

Please sign in to comment.