Displaying 2 results from an estimated 2 matches for "hl_privateheaders".
2009 Jan 02
3
[LLVMdev] Private headers and testing
Hi all,
Reading this doc:
http://llvm.org/docs/CodingStandards.html#hl_privateheaders, it suggests
putting private implementation details outside of llvm/include/* to avoid
polluting the public header space. This makes sense, and it works fine,
because make enters every directory and hence doesn't need a -I path to
include them.
However, unittests need to also #include these h...
2009 Jan 02
0
[LLVMdev] Private headers and testing
On Jan 2, 2009, at 12:21 PM, Misha Brukman wrote:
> Hi all,
>
> Reading this doc: http://llvm.org/docs/CodingStandards.html#hl_privateheaders
> , it suggests putting private implementation details outside of llvm/
> include/* to avoid polluting the public header space. This makes
> sense, and it works fine, because make enters every directory and
> hence doesn't need a -I path to include them.
>
> However, un...