mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-25 18:50:19 -06:00
fixed: if we write the size as a size_t we better read it as a size_t
fixes regression after 7dcc411397
This commit is contained in:
parent
bb85fc9939
commit
a016407f81
@ -825,7 +825,7 @@ public:
|
||||
std::string name;
|
||||
buffer.read(name);
|
||||
globalFlows_[i].name = name;
|
||||
unsigned int size = 0;
|
||||
std::size_t size = 0;
|
||||
buffer.read(size);
|
||||
for (unsigned int j = 0; j < size; ++j) {
|
||||
int nncIdx;
|
||||
|
Loading…
Reference in New Issue
Block a user