summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* spelling: entityJosh Soref2019-11-121-1/+1
|
* spelling: embeddingJosh Soref2019-11-125-10/+10
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-11-106-2/+25
|\
| * Merge pull request #7344 from albert-github/feature/bug_tclDimitri van Heesch2019-11-106-2/+25
| |\ | | | | | | Small improvements of TCL output
| | * Small improvements of TCL outputalbert-github2019-10-211-7/+8
| | | | | | | | | | | | | | | | | | Undoing changes for (due to problems with doxygen tests): - in case of `##` comment blocks the last line was not always show - in case of multiple comment blocks, properly separate them
| | * Small improvements of TCL outputalbert-github2019-10-216-10/+32
| | | | | | | | | | | | | | | | | | | | | - handling of the used filename, sometimes the filename was not set resulting in case of a warning with file `<unknown>`, also improving, slightly, the line reference. - in case of `##` comment blocks the last line was not always show - in case of multiple comment blocks, properly separate them - correct handling tab character in source code output (*gen)
* | | Simplied the logic for moving documentation to the most nested EntryDimitri van Heesch2019-11-101-23/+21
| | |
* | | Merge branch 'feature/issue_7295' of ↵Dimitri van Heesch2019-11-101-0/+17
|\ \ \ | |/ / |/| | | | | https://github.com/albert-github/doxygen into albert-github-feature/issue_7295
| * | issue #7295 Doxygen documentation of C++17 nested namespace erroneousalbert-github2019-10-061-0/+17
| | | | | | | | | | | | documentation has to be added to the "last" entry not to the "first" / "top"
* | | Merge branch 'feature/bug_warn_illegal_command' of ↵Dimitri van Heesch2019-11-101-6/+12
|\ \ \ | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_warn_illegal_command
| * | | Better warning message in case of illegal commandalbert-github2019-11-061-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Correcting compilation errors and warnings like: ``` error: invalid conversion from ‘const char*’ to ‘char*’ [-fpermissive] char *cmd_start = (tok==TK_COMMAND_AT ? "@" : "\\"); warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] char *cmd_start = "\\"; ```
| * | | Better warning message in case of illegal commandalbert-github2019-11-061-6/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When having a problem like: ``` /** \file * * \link Something \see nothing2 \endlink * * \link Something @see nothing3 \endlink */ ``` We will get a.o. the warnings: ``` .../aa.h:3: warning: Illegal command see as part of a \link .../aa.h:5: warning: Illegal command see as part of a \link ``` it is not clear what the problem is. With this patch we get a little bit clearer warning: ``` .../aa.h:3: warning: Illegal command \see as part of a \link .../aa.h:5: warning: Illegal command @see as part of a \link ```
* | | | Fixed use of uninitialized pointer in preprocessorDimitri van Heesch2019-11-0915-19/+19
| | | |
* | | | Remove global state from constexp lexerDimitri van Heesch2019-11-096-52/+98
| | | |
* | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-11-0938-60/+59
|\ \ \ \
| * \ \ \ Merge pull request #7377 from albert-github/feature/bug_spell_srcDimitri van Heesch2019-11-0638-60/+59
| |\ \ \ \ | | |/ / / | |/| | | Spelling corrections for src directory
| | * | | Spelling corrections for src directoryalbert-github2019-11-0538-60/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Spelling corrections as found by codespell and in #561. Some reported problems were already fixed, others are fixed here, with some exceptions (a,o.): - "referenceby" in defgen.cpp as this is in the output and I cannot oversee the consequences (looks like none, but ...) - "HANGEUL_CHARSET" left as is as in some MS documentation is written: 'HANGUL_CHARSET: Also spelled "Hangeul". Specifies the Hangul Korean character set.' (https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/0d0b32ac-a836-4bd2-a112-b6000a1b4fc9).
* | | | | Make preprocess code reentrantDimitri van Heesch2019-11-094-1638/+1687
| | | | |
* | | | | Fixed use of uninitialized data in VHDL generatorDimitri van Heesch2019-11-091-5/+8
|/ / / /
* | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-11-051-0/+7
|\ \ \ \
| * | | | QGDict::hashAsciiKey: Invalid null key due to empty procedure namealbert-github2019-11-041-0/+7
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When having a problem like: ``` namespace eval ::tk::dialog {} namespace eval ::tk::dialog::file {} namespace eval ::tk::dialog::file::chooseDir { namespace import -force ::tk::msgcat::* } proc ::tk::dialog::file::chooseDir:: {args} { } ``` This will lead to the following warnings: ``` QGDict::hashAsciiKey: Invalid null key .../aa.tcl:9: warning: Illegal member name found. ``` this is due to the fact that the procedure name definition ends with `::` and thus actually has an empty procedure name (this is legal in TCL). (see also: https://stackoverflow.com/questions/58683103/meaning-of-a-proc-name-ending-with). In case of an empty name the last component is taken for the name too.
* | | | issue #7302: Determination of anonymous is too restrictiveDimitri van Heesch2019-11-0515-92/+82
|/ / /
* | | Changed implementation to use SkipString/SkipStringS.Dimitri van Heesch2019-11-021-6/+10
| | |
* | | Merge branch 'feature/bug_code_string' of ↵Dimitri van Heesch2019-11-021-0/+6
|\ \ \ | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_code_string
| * | | Code highlighting.albert-github2019-10-101-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case we have an example like (based on issue #7302): ``` /// @file /// Something template <char C> struct one { }; /// The struct single_009 the char struct single_009 : one<' '> { }; /// The struct single_010 the char struct single_039 : one<'\''> { }; /// The struct single_040 the char ( struct single_040 : one<'('> { }; /// The struct single_041 the char ) struct single_041 : one<')'> { }; /// The struct single_042 the char * struct single_042 : one<'*'> { }; struct single_058 : one<':'> { }; /// The struct single_059 the char ; struct single_059 : one<';'> { }; /// The struct single_060 the char < struct single_060 : one<'<'> { }; /// The struct single_061 the char = struct single_061 : one<'='> { }; /// The struct single_062 the char > struct single_062 : one<'>'> { }; /// The struct single_063 the char ? struct single_063 : one<'?'> { }; ``` The result is that in the code section there are no links to the structs 41, 61, 62 as the `(` and `<` block it till the corresponding `)` and `>` is found. Analogous problem for the double quote version.
* | | | Merge pull request #7323 from albert-github/feature/bug_empty_html_tagDimitri van Heesch2019-11-021-18/+26
|\ \ \ \ | | | | | | | | | | Skip empty HTML tag
| * | | | Skip empty HTML tagalbert-github2019-10-151-18/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to the fact that an empty HTML tag (like `<strike/>` is seen as a start tag the rest of a documentation block is handled with the strikethrough. Same problem occurs for other tags as well, in most cases empty HTML tags should be left out of the output (and just give the warning about the empty tag). Mentioned example: ``` /** Before a strike: <strike/> after strike */ void fie_b_strike(void); ```
* | | | | Merge pull request #7364 from albert-github/feature/issue_7358Dimitri van Heesch2019-11-021-1/+1
|\ \ \ \ \ | | | | | | | | | | | | issue #7358: Ternary conditional and null-coalescing operator in constructor results in faulty warning
| * | | | | issue #7358: Ternary conditional and null-coalescing operator in constructor ↵albert-github2019-10-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | results in faulty warning Problem due to the implementation of "Support for C# nullable types (Origin: bugzilla #638606)" (issue #4064, pull request #645). The used condition was a bit to stringent so later on the function was not recognized as constructor.
* | | | | | Removing left over debug statementsalbert-github2019-11-012-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | Removing some leftover debug statements from38f1441dc329e72ba4c782fdc721ce5199e01a67 and 6216208b0a4288a41450e4d37226f0e4c492128c
* | | | | | Merge branch 'master' into feature/bug_param_missing_warnDimitri van Heesch2019-11-0170-3932/+2833
|\ \ \ \ \ \
| * | | | | | Removed commented out lineDimitri van Heesch2019-11-011-1/+0
| | | | | | |
| * | | | | | Merge branch '191031/g_bracketCont' of https://github.com/cheoljoo/doxygen ↵Dimitri van Heesch2019-11-011-1/+1
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | into cheoljoo-191031/g_bracketCont
| | * | | | | | bug fix of g_bracketCount in case of if( myobject.getPair() )Charles.Lee2019-10-311-1/+1
| | | | | | | |
| * | | | | | | Replaced QList<ListItemInfo> with std::vector<ListItemInfo>Dimitri van Heesch2019-10-2919-212/+93
| | | | | | | |
| * | | | | | | Replaced QList<SectionInfo> by std::vector<SectionInfo>Dimitri van Heesch2019-10-2913-50/+22
| | | | | | | |
| * | | | | | | Replaced QList<Grouping> with std::vector<Grouping>Dimitri van Heesch2019-10-2910-146/+59
| | | | | | | |
| * | | | | | | Replaced QList<BaseInfo> with std::vector<BaseInfo>Dimitri van Heesch2019-10-299-78/+47
| | | | | | | |
| * | | | | | | Cleanup forward declarations of obsolete classesDimitri van Heesch2019-10-285-7/+0
| | | | | | | |
| * | | | | | | Embed TagInfo struct inside EntryDimitri van Heesch2019-10-289-96/+86
| | |/ / / / / | |/| | | | |
| * | | | | | Merge pull request #7341 from ellert/source-date-yearDimitri van Heesch2019-10-281-3/+9
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Let $year support SOURCE_DATE_EPOCH
| | * | | | | | Let $year support SOURCE_DATE_EPOCHMattias Ellert2019-10-191-3/+9
| | | |_|_|_|/ | | |/| | | |
| * | | | | | Merge pull request #7353 from albert-github/feature/issue_7119Dimitri van Heesch2019-10-281-1/+1
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | issue #7119 Doxygen does not link to C# snippets - regression
| | * | | | | | issue #7119 Doxygen does not link to C# snippets - regressionalbert-github2019-10-271-1/+1
| | |/ / / / / | | | | | | | | | | | | | | | | | | | | | Looks like the `isLinkableIeInProject` is a bit to strict and `isLinkable` has to be used (also the original pull request #6489 still works OK).
| * | | | | | Merge pull request #7355 from albert-github/feature/bug_quote_warn_2Dimitri van Heesch2019-10-281-2/+3
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Properly open quotes in warning
| | * | | | | | Properly open quotes in warningalbert-github2019-10-281-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 78b5c44 'Properly close quotes in warning' https://github.com/doxygen/doxygen/pull/7312 handled the case that a closing quote was missing in case of a missing closing quote. I case the word template is missing it is possible to miss the opening quote, resulting in: ``` wxWidgets-3.1.3/src/x11/brush.cpp:66: warning: no matching class member found for wxBrush::wxBrush(const wxColour &col, int style) Possible candidates: wxBrush::wxBrush()' wxBrush::wxBrush(const wxColour &colour, wxBrushStyle style=wxBRUSHSTYLE_SOLID)' ``` this is fixed here.
| * | | | | | | Merge pull request #7332 from albert-github/feature/bug_rtf_manDimitri van Heesch2019-10-281-7/+14
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | RTF extension file to standard output, make according documentation consistent.
| | * | | | | | | RTF extension file to standard output, make according documentation consistent.albert-github2019-10-171-7/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create possibility to write rtf extension file to standard output as well, see to it that same technique is used on different places Update documentation and make it consistent
| * | | | | | | | Merge pull request #7331 from albert-github/feature/issue_7328Dimitri van Heesch2019-10-281-0/+1
| |\ \ \ \ \ \ \ \ | | |_|/ / / / / / | |/| | | | | | | issue #7328 Cannot generate DoxygenLayout.xml
| | * | | | | | | issue #7328 Cannot generate DoxygenLayout.xmlalbert-github2019-10-171-0/+1
| | |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Problems with generating the DoxygenLayout.xml on a system the language set to Russian, set encoding for file.