Skip to content
Snippets Groups Projects
Commit f3640856 authored by Andre Offringa's avatar Andre Offringa
Browse files

Fix serialization bug in MPI mode introduced when feathering

parent 9904ac4b
No related branches found
No related tags found
1 merge request!120Fix serialization bug in MPI mode introduced when feathering
......@@ -317,7 +317,8 @@ void Facet::Serialize(aocommon::SerialOStream& stream) const {
.Object(dir_)
.String(direction_label_)
.Object(trimmed_box_)
.Object(untrimmed_box_);
.Object(untrimmed_box_)
.Object(convolution_box_);
}
void Facet::Unserialize(aocommon::SerialIStream& stream) {
......@@ -328,7 +329,8 @@ void Facet::Unserialize(aocommon::SerialIStream& stream) {
.Object(dir_)
.String(direction_label_)
.Object(trimmed_box_)
.Object(untrimmed_box_);
.Object(untrimmed_box_)
.Object(convolution_box_);
}
} // namespace facets
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment