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

Merge branch 'fix-convolution-box-serialization' into 'master'

Fix serialization bug in MPI mode introduced when feathering

See merge request !120
parents 9904ac4b f3640856
No related branches found
No related tags found
1 merge request!120Fix serialization bug in MPI mode introduced when feathering
Pipeline #48538 passed
......@@ -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