not sure if this is the right place for such a basic question, sorry if that’s the case. I have been refactoring some code these days which has long hard-coded arrays with many continuation lines, so far 255 < NL < 511. So with gfortran I am getting the following warning:
Warning: Limit of 255 continuations exceeded in statement at (1)
So my question is, is it always a bad idea to have that many continuation lines? Does it harm performance? Approaches like splitting the array in several parts and then concatenating feel hacky to me.
@Panadestein , it may interest you to note starting Fortran 2023 standard revision, “The limit of 255 continuation lines is removed” and instead there is a limit on the total statement length which is “a million characters.”