diff options
| author | Vassil Vassilev <v.g.vassilev@gmail.com> | 2017-04-20 08:57:41 +0000 |
|---|---|---|
| committer | Vassil Vassilev <v.g.vassilev@gmail.com> | 2017-04-20 08:57:41 +0000 |
| commit | 65f1d52ce678a85dda8ac284b908a4f215401b28 (patch) | |
| tree | d5202b3a8d26ffe2c85b7a1e1b052cfce0976333 /clang/docs | |
| parent | 6a638427084577d9ea6570c2da74d20839a4baa0 (diff) | |
| download | bcm5719-llvm-65f1d52ce678a85dda8ac284b908a4f215401b28.tar.gz bcm5719-llvm-65f1d52ce678a85dda8ac284b908a4f215401b28.zip | |
PR19260: Teach doxygen to spell correctly the include paths.
Currently we have #include <Sema.h> in the doxygen page documenting Sema. The
patch changes it ot #include "clang/Sema/Sema.h" which is what we would spell if
we need to include it in a real codebase.
Patch by Yuka Takahashi (D32113)!
llvm-svn: 300825
Diffstat (limited to 'clang/docs')
| -rw-r--r-- | clang/docs/doxygen.cfg.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/docs/doxygen.cfg.in b/clang/docs/doxygen.cfg.in index ef96605ed1c..13ed72222be 100644 --- a/clang/docs/doxygen.cfg.in +++ b/clang/docs/doxygen.cfg.in @@ -132,7 +132,7 @@ INLINE_INHERITED_MEMB = NO # shortest path that makes the file name unique will be used # The default value is: YES. -FULL_PATH_NAMES = NO +FULL_PATH_NAMES = YES # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. # Stripping is only done if one of the specified strings matches the left-hand @@ -144,7 +144,7 @@ FULL_PATH_NAMES = NO # will be relative from the directory where doxygen is started. # This tag requires that the tag FULL_PATH_NAMES is set to YES. -STRIP_FROM_PATH = ../.. +STRIP_FROM_PATH = @abs_srcdir@/.. # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the # path mentioned in the documentation of a class, which tells the reader which @@ -153,7 +153,7 @@ STRIP_FROM_PATH = ../.. # specify the list of include paths that are normally passed to the compiler # using the -I flag. -STRIP_FROM_INC_PATH = +STRIP_FROM_INC_PATH = @abs_srcdir@/../include # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but # less readable) file names. This can be useful is your file systems doesn't @@ -513,7 +513,7 @@ SHOW_GROUPED_MEMB_INC = NO # files with double quotes in the documentation rather than with sharp brackets. # The default value is: NO. -FORCE_LOCAL_INCLUDES = NO +FORCE_LOCAL_INCLUDES = YES # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the # documentation for inline members. |

