mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Made grid argument of compute_sequence() const.
This commit is contained in:
parent
4f0d501ac6
commit
7de03af4c1
@ -99,7 +99,7 @@ compute_reorder_sequence(int nc, int nf, int *cellfaces, int *faceptr, int *face
|
||||
free(work);
|
||||
}
|
||||
|
||||
void compute_sequence(struct UnstructuredGrid *grid, const double *flux,
|
||||
void compute_sequence(const struct UnstructuredGrid *grid, const double *flux,
|
||||
int *sequence,
|
||||
int *components, int *ncomponents)
|
||||
{
|
||||
|
@ -7,7 +7,7 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
struct UnstructuredGrid;
|
||||
void compute_sequence(struct UnstructuredGrid *grid, const double *flux,
|
||||
void compute_sequence(const struct UnstructuredGrid *grid, const double *flux,
|
||||
int *sequence, int *components, int *ncomponents);
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user