mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-02 04:26:55 -06:00
Merge pull request #5238 from akva2/fix_flows_regression
fixed: if we write the size as a size_t we better read it as a size_t
This commit is contained in:
commit
56b492069b
@ -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