diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-15 20:45:40 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-15 20:45:40 +0100 |
commit | 57e56ae5611bb410a817ab747e83777bdd576a1b (patch) | |
tree | 4e8fc20b416b2c445297181553158bf7a15eadf1 | |
parent | Small performance improvements in fluid simulator. (diff) | |
download | cuberite-57e56ae5611bb410a817ab747e83777bdd576a1b.tar cuberite-57e56ae5611bb410a817ab747e83777bdd576a1b.tar.gz cuberite-57e56ae5611bb410a817ab747e83777bdd576a1b.tar.bz2 cuberite-57e56ae5611bb410a817ab747e83777bdd576a1b.tar.lz cuberite-57e56ae5611bb410a817ab747e83777bdd576a1b.tar.xz cuberite-57e56ae5611bb410a817ab747e83777bdd576a1b.tar.zst cuberite-57e56ae5611bb410a817ab747e83777bdd576a1b.zip |
-rw-r--r-- | Doxyfile | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -482,7 +482,7 @@ SORT_MEMBER_DOCS = YES # by member name. If set to NO (the default) the members will appear in # declaration order. -SORT_BRIEF_DOCS = NO +SORT_BRIEF_DOCS = YES # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen # will sort the (brief and detailed) documentation of class members so that @@ -732,7 +732,7 @@ RECURSIVE = YES # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = +EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded @@ -746,10 +746,10 @@ EXCLUDE_SYMLINKS = NO # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* -EXCLUDE_PATTERNS = *StackWalker.* \ - *LeakFinder.* \ - *Bindings.* \ - *ManualBindings.* +EXCLUDE_PATTERNS = *StackWalker.* \ + *LeakFinder.* \ + *Bindings.* \ + *ManualBindings.* # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the @@ -758,8 +758,8 @@ EXCLUDE_PATTERNS = *StackWalker.* \ # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = _* \ - __* \ - abstract + __* \ + abstract # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see |