mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-22 17:26:27 -06:00
adjust to change in MemPacker unpack signature
This commit is contained in:
parent
fc8135894c
commit
e808a3d2f3
@ -41,7 +41,7 @@ pack(const boost::gregorian::date& data,
|
||||
|
||||
void Packing<false,boost::gregorian::date>::
|
||||
unpack(boost::gregorian::date& data,
|
||||
std::vector<char>& buffer, std::size_t& position)
|
||||
const std::vector<char>& buffer, std::size_t& position)
|
||||
{
|
||||
std::string date;
|
||||
Packing<false,std::string>::unpack(date, buffer, position);
|
||||
|
@ -38,7 +38,7 @@ struct Packing<false,boost::gregorian::date>
|
||||
std::vector<char>& buffer, std::size_t& position);
|
||||
|
||||
static void unpack(boost::gregorian::date& data,
|
||||
std::vector<char>& buffer, std::size_t& position);
|
||||
const std::vector<char>& buffer, std::size_t& position);
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user