rspec/shared_content/cfamily/line_splicing.adoc
Marco Borgeaud 6cae06f38c
Modify rule S1916: LaYC format (#2711)
Share content with S2323.
2023-08-02 09:47:38 +00:00

5 lines
331 B
Plaintext

When a line of code ends with the `\` (backslash) character, the newline character is deleted.
The compiler considers the next line a continuation of the current line, resulting in only one logical line of code.
This source code transformation, known as _line-splicing_, occurs during the second phase of C and {cpp} translation.