Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
nimble0 authored and SanderMertens committed Oct 31, 2022
1 parent 5e0f37a commit 8bd4cde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/flecs/private/vector.h
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ class vector {
}

void add(T&& value) {
T* elem = static_cast<T*>(_ecs_vector_add(&m_vector, ECS_VECTOR_T(T)))
T* elem = static_cast<T*>(_ecs_vector_add(&m_vector, ECS_VECTOR_T(T)));
*elem = value;
}

Expand Down

0 comments on commit 8bd4cde

Please sign in to comment.