mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
collecttoiorank.hh: use camelCase consistently
This commit is contained in:
parent
b92aee90b5
commit
24fc04a102
@ -298,9 +298,9 @@ public:
|
|||||||
// add missing data to global cell data
|
// add missing data to global cell data
|
||||||
for (const auto& pair : localCellData_) {
|
for (const auto& pair : localCellData_) {
|
||||||
const std::string& key = pair.first;
|
const std::string& key = pair.first;
|
||||||
std::size_t container_size = globalSize;
|
std::size_t containerSize = globalSize;
|
||||||
auto OPM_OPTIM_UNUSED ret = globalCellData_.insert(key, pair.second.dim,
|
auto OPM_OPTIM_UNUSED ret = globalCellData_.insert(key, pair.second.dim,
|
||||||
std::vector<double>(container_size),
|
std::vector<double>(containerSize),
|
||||||
pair.second.target);
|
pair.second.target);
|
||||||
assert(ret.second);
|
assert(ret.second);
|
||||||
}
|
}
|
||||||
@ -437,9 +437,9 @@ public:
|
|||||||
MessageBufferType buffer;
|
MessageBufferType buffer;
|
||||||
pack(0, buffer);
|
pack(0, buffer);
|
||||||
|
|
||||||
// pass a dummy_link to satisfy virtual class
|
// pass a dummyLink to satisfy virtual class
|
||||||
const int dummy_link = -1;
|
int dummyLink = -1;
|
||||||
unpack( dummy_link, buffer );
|
unpack(dummyLink, buffer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user