Skip to content

Commit

Permalink
fix: remove [[clang::likely]] flag, it's causing problems in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
edilson258 committed Jun 18, 2024
1 parent 3ebfe5d commit c3f3536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Vectors.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ int Vector_isempty(Vector_t vec) { return vec->size == 0; }
void Vector_push(Vector_t vec, Any_t elem) {
if (Vector_isempty(vec)) {
vec->head = Node_new(elem);
} else [[clang::likely]] {
} else {
Node_t tmp = vec->head;
/*
* O(n)
Expand Down

0 comments on commit c3f3536

Please sign in to comment.