Fix line continuation syntax causing problems with certain compilers (#2060)
commit3dc9f57e0c16e6bdadb464cfc7db13e8a0cf290d
authorAnthony Islas <128631809+islas@users.noreply.github.com>
Wed, 11 Sep 2024 22:19:16 +0000 (11 15:19 -0700)
committerGitHub <noreply@github.com>
Wed, 11 Sep 2024 22:19:16 +0000 (11 15:19 -0700)
tree5f2246337434bc1b8f0ef751fe80ac89ef7cc7a7
parenta6056c1a1bbc2341e4d8607686d6bff49f916c83
Fix line continuation syntax causing problems with certain compilers (#2060)

TYPE: bug fix

KEYWORDS: syntax, compilation

SOURCE: internal

DESCRIPTION OF CHANGES:
Problem:
dyn_em/module_big_step_utilities_em.F contains nonstandard line continuation symbols that are most likely being ignored by the make build system by the in situ file preprocessing steps. The cmake build does not use sed or standard.exe to preprocess files, so these lines get fed directly to compilers. Fortran compilers that do not support C-style line continuation then fail (nvhpc as an example).

Solution:
Change line continuation characters to standard Fortran.
dyn_em/module_big_step_utilities_em.F