Skip to content

Commit

Permalink
fix: fixed ParticleContainer bug
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJulio01 committed Jul 18, 2024
1 parent 664cf47 commit 962d8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/container/ParticleContainer.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ struct ParticleContainer final : public container::Container<DIMENSIONS> {
void boundary() override {}
void refresh() override {}

auto pairwise(bool parallel, bool vector) {
void pairwise(bool parallel, bool vector) override {

const auto particle_size = particles.size;
for (size_t index_1 = 0; index_1 < particle_size - 1; ++index_1) {
Expand Down

0 comments on commit 962d8d8

Please sign in to comment.