From: Daniel Arndt Date: Fri, 5 Jul 2024 00:11:11 +0000 (-0400) Subject: Restore signature for CellDataTransfer::unpack_callback X-Git-Tag: v9.6.0-rc1~131^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2857213ce9815df1620cdd7062b874a81100758a;p=dealii.git Restore signature for CellDataTransfer::unpack_callback --- diff --git a/include/deal.II/distributed/cell_data_transfer.h b/include/deal.II/distributed/cell_data_transfer.h index 8b2e1bef2f..8614979328 100644 --- a/include/deal.II/distributed/cell_data_transfer.h +++ b/include/deal.II/distributed/cell_data_transfer.h @@ -302,8 +302,8 @@ namespace parallel cell_iterator &cell, const CellStatus status, const boost::iterator_range::const_iterator> - &data_range, - const std::vector &all_out); + &data_range, + std::vector &all_out); }; } // namespace distributed } // namespace parallel diff --git a/include/deal.II/distributed/cell_data_transfer.templates.h b/include/deal.II/distributed/cell_data_transfer.templates.h index 7ceffefe97..ebbb1a856b 100644 --- a/include/deal.II/distributed/cell_data_transfer.templates.h +++ b/include/deal.II/distributed/cell_data_transfer.templates.h @@ -308,8 +308,8 @@ namespace parallel cell_iterator &cell, const CellStatus status, const boost::iterator_range::const_iterator> - &data_range, - const std::vector &all_out) + &data_range, + std::vector &all_out) { std::vector cell_data;