Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions llvm/docs/CodingStandards.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1790,6 +1790,13 @@ would help to avoid running into a "dangling else" situation.
markAsIgnored(D);
}

Use Unix style line endings for source files
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Use Unix style line endings for C/C++ source files (``.c``, ``.cpp`` and header
files). This is required to avoid various build issue for downstream clients of
LLVM. Test files like C/C++/HLSL test inputs can continue to use any line ending
style.

See Also
========
Expand Down
Loading