Squeezed spaces, splitted long lines so that all lines have no more than 72 characters.
Details
Diff Detail
- Repository
- rOMP OpenMP
Event Timeline
runtime/src/include/50/omp_lib.h.var | ||
---|---|---|
27–29 | Aren't these longer than 72 chars? |
runtime/src/include/50/omp_lib.h.var | ||
---|---|---|
27–29 | Yes - before variables substitution, and NO - after the substitution performed during the build. |
runtime/src/include/50/omp_lib.h.var | ||
---|---|---|
30 | It's not gonna work if someone use fixed format and extended line len, compiler will fail on this & at end.
so they can be always included, e.g.: |
I am a bit puzzled by the requirement for the file to be compilable in free or fixed form and with 72 or 132 line width, because of the line:
integer(kind=omp_control_tool_result_kind)omp_control_tool_nocallback
Not sure if it is possible at all.
Changed the style so that all lines have length less than 72 char.
The kind of the longest variable "omp_control_tool_nocallback" changed from "omp_control_tool_result_kind" to be the parent kind "omp_integer_kind", thus the declaration line fits 72 chars (could not come up with a better solution for this variable).
Alternatively tried to place continuation sign "&" to post 132 location, but this looks like a non-standard trick, though Intel compiler works with this.
Aren't these longer than 72 chars?