Skip to content

Commit dcf1cf1

Browse files
committed
small bug fix
1 parent 7564f35 commit dcf1cf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data_structures/APR/ExtraParticleData.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ExtraParticleData {
3939
template<typename S>
4040
void init_tree(const APRTree<S> &apr_tree){
4141
//initialization when using with APRTree class
42-
data.resize(apr_tree.total_number_parent_cells(),0);
42+
data.resize(apr_tree.total_number_parent_cells());
4343
}
4444

4545
uint64_t total_number_particles() const {

0 commit comments

Comments
 (0)