Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Cornu committed May 5, 2024
1 parent 485f9c1 commit 87e1ee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parallel/ocbbs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@ char* BBSImpl::execute_helper(size_t* size, int id, bool exec) {
nrnmpi_int_broadcast(&size, 1, 0);
nrnmpi_char_broadcast(ret.data(), size, 0);
}
s = new char[ret.size()];
char* s = new char[ret.size()];
std::copy(ret.begin(), ret.end(), s);
npickle = ret.size();
} else {
Expand Down

0 comments on commit 87e1ee4

Please sign in to comment.