mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Change size_t to int to avoid comparison warnings
and add some white spaces
This commit is contained in:
@@ -234,8 +234,8 @@ struct HelperOps
|
||||
face_cells = faceCellsToEigen(g);
|
||||
|
||||
// num connections may possibly include NNCs
|
||||
size_t num_nnc = h.nnc_trans.size();
|
||||
size_t num_connections= nif + num_nnc;
|
||||
int num_nnc = h.nnc_trans.size();
|
||||
int num_connections = nif + num_nnc;
|
||||
assert(num_connections == ifaceflux.size());
|
||||
|
||||
// Define selector structure.
|
||||
|
||||
Reference in New Issue
Block a user