Displaying 1 result from an estimated 1 matches for "ucstring".
Did you mean:
cstring
2003 Nov 13
4
[LLVMdev] Headers & Libraries
...the
LLVM header files. The practice for many open source projects today is
to place all the header files in a directory that identifies the
project. For example, when you include a Xerces header file, you do so
with #include <xercesc/XYZ/File.h>. Similarly for ICU, we use #include
<unicode/ucstring.h>. The same is true of many other packages, mine
included. Unfortunately, it is not true of LLVM. Every #include in LLVm
should look like: #include <llvm/Module/Header.h> As in #include
<llvm/Support/support.h>. This clearly identifies it for end users and
ensures that support.h...