[PATCH] D32113: Add path from clang to doxygen document include header

Yuka Takahashi via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Apr 17 06:13:56 PDT 2017


yamaguchi added inline comments.


================
Comment at: docs/doxygen.cfg.in:158
+STRIP_FROM_INC_PATH    += @abs_srcdir@/../include/clang
+STRIP_FROM_INC_PATH    += @abs_srcdir@/../include/clang-c
 
----------------
v.g.vassilev wrote:
> We should be stripping `@abs_srcdir@/../include` because in reality the way the user will include those files is via `#include "clang/Sema/Sema.h" for instance.
Do you mean we should be stripping 
```
@abs_srcdir@/../include
```
rather than

```
@abs_srcdir@/..
@abs_srcdir@/../include/clang
@abs_srcdir@/../include/clang-c
```
?


https://reviews.llvm.org/D32113





More information about the cfe-commits mailing list