I’m a bit anally retentive when it comes to writing neat source code.
Is there a way to implement a line break (i.e. analogous to the use of & in fortran code) of an OMP pragma statement?
i.e., if I have some code:
!OMP PARALLEL PRIVATE ( A, B, C, D, E, F, G ) SHARED ( H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z )
........
!OMP END PARALLEL
Can I somehow get all the SHARED variables on the next line (i.e. I like to keep the source code character width to something approximating the old F77 limit of 72 characters (or whatever it used to be))…
Cheers,
Rob.