Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
yungcomputerchair committed Oct 29, 2024
1 parent af91114 commit 581d009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bucket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Bucket {
}

void add(const T& item) {
assert(sz < N, "Bucket is full");
assert(sz < N);
buf[sz++] = item;
}

Expand Down

0 comments on commit 581d009

Please sign in to comment.