| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
In (the rare) case the path is not set don't try to use the pointer.
regression on pull request #513
|
|\
| |
| | |
Missing brief descriptions with `\defgroup`
|
| |
| |
| |
| |
| | |
Due to the fact that issue #6945 ended a brief description, all following was put into the detailed description (unless explicit \brief was used). The `\defgroup` should end the current brief description, but first line of the `\defgroup` should be seen as a new brief description.
Problem can be seen with in the doxygen documentation in the example in the Grouping part and also with #7053 a small example is given in the comment.
|
|\ \ |
|
| |\ \
| | | |
| | | | |
Cygwin should by default also have `CASE_SENSE_NAMES=NO`
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Cygwin should by default also have `CASE_SENS_NAMES=NO` like is the case for the underlying Windows.
In case of Cygwin the define `_WIN32` is not set so we also have to test for `__CYGWIN__`
|
| |\ \ \
| | | | |
| | | | | |
issue #6860 - Incorrect parsing of optional class fields in Slices
|
| | | |/
| | |/| |
|
|\ \ \ \
| |/ / /
|/| | |
| | | | |
https://github.com/albert-github/doxygen into albert-github-feature/issue_7050
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
spaces in 1.8.15
Handling of `\_linebr` with defgroup and also with the `\page` command.
Adding a missing linecount.
|
| | | |
|
| | | |
|
|\ \ \
| | |/
| |/| |
|
| |\ \
| | | |
| | | | |
Bug 489766 - Wrong MSC syntax rejected *silently*
|
| | | |
| | | |
| | | |
| | | | |
Different types of inFile in different routines.
|
| | |/
| | |
| | |
| | | |
In case of an error at least a message (consistency) should be given (besides msc also for dia and htags).
|
|/ / |
|
|\ \
| |/ |
|
| |
| |
| |
| | |
Handle consts separately and in case of CSharp set the static flag.
|
| |\
| | |
| | | |
issue #7038 Broken refman.tex with SHOW_FILES=NO and doxygen groups
|
| | |
| | |
| | |
| | | |
Only have index section when SHOW_FILES is set (analogous to index for namespaces)i
|
| |\ \
| | | |
| | | | |
Consistency not generated inheritance diagram
|
| | |/
| | |
| | |
| | |
| | | |
Also warn when an inheritance diagram is not generated.
Corrected "dead" code in if statement
|
| | |
| | |
| | |
| | |
| | |
| | | |
{#mainpage}' and 'Header {#mainpage}\n===='
In case of an ATX header the id was overwritten again by the subsequent call to extractTitleId, this should only happen in case of a non ATX header ('===' headers returned already beforehand).
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
In case we have something like (taken loosely from issue #4554):
```
- \subpage id_201201031218 \copydoc id_201201031218
```
this would be translated into:
```
- @subpage id_201201031218\copydetails id_201201031218]
```
and subsequently the first word of the `\copydetails` part is placed directly to the `id_201201031218` resulting in an unknown id like `id_201201031218this`
(This actual case it doesn't make much sense to use a `\copydoc` but this can happen in other cases as well).
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
When running doxygen (master) on the ceph project (https://github.com/ceph/ceph/archive/v15.0.0.tar.gz) doxygen crashes with what looks like an endless loop.
Seen the code:
```
virtual int countMemberDeclarations(MemberListType lt,const ClassDef *inheritedFrom,
int lt2,bool invert,bool showAlways,QPtrDict<void> *visitedClasses) const
{ return countMemberDeclarations(lt,inheritedFrom,lt2,invert,showAlways,visitedClasses); }
```
and the above code, it looks like the fix might be:
```
virtual int countMemberDeclarations(MemberListType lt,const ClassDef *inheritedFrom,
int lt2,bool invert,bool showAlways,QPtrDict<void> *visitedClasses) const
{ return getCdAlias()->countMemberDeclarations(lt,inheritedFrom,lt2,invert,showAlways,visitedClasses); }
```
|
| | |
|
| |
| |
| |
| | |
new processing job
|
|/
|
|
| |
output files
|
|
|
|
| |
Do the `curlyCount` per file and not globally.
|
|\ |
|
| |\
| | |
| | | |
Handling digraph versus label
|
| | |
| | |
| | |
| | |
| | | |
In case a label contains a backslash (at the end), the digrapgh statement remains unchanged, though with the label= this backslash is converted to a double backslash.
Especially at the end (just before the " this can lead to problems, making the handling uniform.
|
| |\ \
| | | |
| | | | |
Conflict between RCS tag and (e.g.) php description
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
In some languages the `$` is used to start a variable name (php, perl).
When having a description like:
```
<b>$RRDp::error_mode</b>, <b>$RRDp::error</b>
```
this will lead to a message like:
```
warning: found </b> at different nesting level (4) than expected (2)
```
because the part `$RRDp:` is seen as start of a RCS tag and runs till the next `$`.
Though the `::` indicates here a class / namespace separator and in case of `$...:` directly followed by a `:` this should not be seen as RCS tag.
|
| |\ \ \
| | |/ /
| |/| | |
issue 7015 Parsing issue with @includedoc and @startuml
|
| | | |
| | | |
| | | |
| | | | |
In case of `\includedoc` the `\n` was not handled on the first line (`@startuml`)
|
| |\ \ \
| | |/ /
| |/| | |
Ambiguous file name in file command
|
| | | |
| | | |
| | | |
| | | | |
The file command has only one argument.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
I some cases a file name is used with the `\file` command and this filename exists multiple times although the `\file` command is in the file itself (actually file name can be omitted).
Another possibility is that the file description is in another file in the same directory.
When file is not found or ambiguous, try to prepend the path of the current file to it and see if the file can be found.
Example is shown in the warnings file like:
```
gmic-2.6.1/gmic-qt/src/Common.h:3: warning: the name `Common.h' supplied as the second argument in the \file statement matches the following input files:
gmic-2.6.1/gmic-qt/src/Common.h
gmic-2.6.1/zart/include/Common.h
Please use a more specific name by including a (larger) part of the path!
```
and here it is quite clear and unambiguous which file is meant.
|
|/ / / |
|
| | | |
|
|\ \ \ |
|
| |\ \ \
| | | | |
| | | | | |
enable debug for re-entrant lexers
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
constructor and assignment operator
|
|\ \ \ \ \
| |/ / / /
|/| | | |
| | | | | |
thomas-haller-issue6960_d
|
| |/ / /
| | | |
| | | |
| | | | |
for the same .dot file
|
|\ \ \ \
| |/ / / |
|
| |\ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
cfriedt/feature/cfriedt/6955/allow-javadoc-style-comment-blocks-with-a-doxyfile-variable
Allow Javadoc-style comment blocks with a Doxyfile variable
|