From 81b8a3437cfa5b8acfeee57fc449c79fd49aa050 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Mon, 21 May 2012 16:37:06 +0200 Subject: [PATCH] White-space adjustments. Mostly splitting long lines in declarations. --- opm/core/transport/reorder/reordersequence.h | 23 ++++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/opm/core/transport/reorder/reordersequence.h b/opm/core/transport/reorder/reordersequence.h index 818d54dc..696f51fe 100644 --- a/opm/core/transport/reorder/reordersequence.h +++ b/opm/core/transport/reorder/reordersequence.h @@ -4,21 +4,30 @@ #ifdef __cplusplus extern "C" { -#endif +#endif /* __cplusplus */ struct UnstructuredGrid; -void compute_sequence(const struct UnstructuredGrid *grid, const double *flux, - int *sequence, int *components, int *ncomponents); +void +compute_sequence(const struct UnstructuredGrid *grid , + const double *flux , + int *sequence , + int *components , + int *ncomponents); -void compute_sequence_graph(const struct UnstructuredGrid *grid, const double *flux, - int *sequence, int *components, int *ncomponents, - int *ia, int *ja); +void +compute_sequence_graph(const struct UnstructuredGrid *grid , + const double *flux , + int *sequence , + int *components , + int *ncomponents, + int *ia , + int *ja ); #ifdef __cplusplus } -#endif +#endif /* __cplusplus */ #endif /* REORDERSEQUENCE_H_INCLUDED */