search for: includesrequired

Displaying 2 results from an estimated 2 matches for "includesrequired".

2015 Sep 10
2
LLVM coding standards and order of includes
...rding to the LLVM coding standards, Immediately after the <http://llvm.org/docs/CodingStandards.html#header-file-comment> header file comment (and include guards if working on a header file), the <http://llvm.org/docs/CodingStandards.html#minimal-list-of-includes> minimal list of #includesrequired by the file should be listed. We prefer these #includes to be listed in this order: 1. Main Module Header 2. Local/Private Headers 3. llvm/... 4. System #includes If a program is using LLVM, and also using a third-party library such as GMP, where would the coding standard have the GMP include be...
2015 Sep 10
3
LLVM coding standards and order of includes
According to the LLVM coding standards, Immediately after the header file comment <http://llvm.org/docs/CodingStandards.html#header-file-comment> (and include guards if working on a header file), the minimal list of #includes <http://llvm.org/docs/CodingStandards.html#minimal-list-of-includes>required by the file should be listed. We prefer these #includes to be listed in this order: