From 56d7a1ec195ebdeb269515611d2891fbcb827a0b Mon Sep 17 00:00:00 2001 From: Tor Harald Sandve Date: Thu, 9 Jan 2020 12:51:10 +0100 Subject: [PATCH] yet another rebase fix --- opm/simulators/utils/ParallelRestart.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/opm/simulators/utils/ParallelRestart.cpp b/opm/simulators/utils/ParallelRestart.cpp index 7b71a629f..b89f32502 100644 --- a/opm/simulators/utils/ParallelRestart.cpp +++ b/opm/simulators/utils/ParallelRestart.cpp @@ -3421,6 +3421,15 @@ void pack(const BrineDensityTable& data, pack(data.getBrineDensityColumn(), buffer, position, comm); } +void pack(const PvtwsaltTable& data, + std::vector& buffer, int& position, + Dune::MPIHelper::MPICommunicator comm) +{ + pack(data.getReferencePressureValue(), buffer, position, comm); + pack(data.getReferenceSaltConcentrationValue(), buffer, position, comm); + pack(data.getTableValues(), buffer, position, comm); +} + void pack(const SummaryNode& data, std::vector& buffer, int& position, Dune::MPIHelper::MPICommunicator comm)