summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | Refactoring: remove some dead/commented out codeDimitri van Heesch2021-01-221-18/+1
| |
* | Avoid writing artifically created classes to the tag fileDimitri van Heesch2021-01-131-4/+1
|/
* Update doxygen copyright (year)Release_1_9_1Dimitri van Heesch2021-01-081-1/+1
|
* Fix coverity dead-code warningDimitri van Heesch2021-01-081-1/+1
|
* Various fixes based on coverity scan resultsDimitri van Heesch2021-01-051-142/+175
|
* issue #8296: LaTeX Error: File ... not found (for caffee project)Dimitri van Heesch2021-01-051-10/+2
|
* issue #8300: File naming changed in Doxygen 1.9.0Dimitri van Heesch2021-01-041-1/+12
|
* Refactoring: moderize Doxygen::dirRelationsDimitri van Heesch2021-01-021-2/+1
|
* issue #8296: LaTeX Error: File ... not found.Dimitri van Heesch2021-01-021-1/+12
|
* issue #8295: segmentation faultDimitri van Heesch2021-01-021-5/+9
|
* Refactoring: modernise Doxygen::clangUsrMapDimitri van Heesch2021-01-011-2/+2
|
* Refactoring: remove unused Doxygen::htmlDirMapDimitri van Heesch2021-01-011-1/+0
|
* Refactoring: replace Doxygen::directories by Doxygen::dirLinkedMapDimitri van Heesch2021-01-011-11/+7
|
* Refactoring: remove unused Doxygen::entryDBFileName and Doxygen::objDBFileNameDimitri van Heesch2021-01-011-24/+0
|
* Refactoring: replace Doxygen::groupSDict by Doxygen::groupLinkedMapDimitri van Heesch2020-12-311-58/+38
|
* Refactoring: replaced PageSDict by PageLinked*MapDimitri van Heesch2020-12-311-46/+33
|
* Fix cases where classes inside inline namespaces could lead to crashesDimitri van Heesch2020-12-311-166/+201
|
* Fix potential crash with inline namespaceDimitri van Heesch2020-12-301-25/+29
| | | | | | | | | | | | | | | | Happens when an inline namespace also appears as normal namespace in the parent scope. Minimal reproduction scenario: ``` namespace N { inline namespace M { namespace L { } } namespace L { } } ```
* Refactoring: replace Doxygen::memGrpInfoDict by Doxygen::memberGroupInfoMapDimitri van Heesch2020-12-301-7/+6
|
* issue #8291: Doxygen crash on Windows when INLINE_SIMPLE_STRUCTS=YESDimitri van Heesch2020-12-301-4/+16
|
* Refactoring: modernise member indicesDimitri van Heesch2020-12-301-11/+8
|
* Avoid "Internal inconsistency" warnings for scoped enumsDimitri van Heesch2020-12-261-3/+7
| | | | Can happen if they appear in an undocumented namespace.
* When instantiating templates also instantiate nested classesDimitri van Heesch2020-12-261-9/+2
|
* Improved sorting of class list/hierarchyDimitri van Heesch2020-12-261-3/+9
| | | | | | | When SORT_BY_SCOPE_NAME = NO nested classes with the same name but in different scopes were shown unsorted. Now they are alphabetically sorted by scope name which make the results more deterministic.
* issue #8050: Artificial classDef confuses getCanonicalTypeForIdentifier() ↵Dimitri van Heesch2020-12-251-9/+34
| | | | (part 2)
* Refactoring: Re-added sorting for namespacesDimitri van Heesch2020-12-251-0/+8
|
* Refactoring: better processing of (un)quoted values for tags in the ↵Dimitri van Heesch2020-12-251-1/+1
| | | | configuration file (part 2)
* issue #8050: Artificial classDef confuses getCanonicalTypeForIdentifier()Dimitri van Heesch2020-12-241-1/+6
|
* issue #8274 List entries for file & namespace enums (part 2)Dimitri van Heesch2020-12-241-3/+9
|
* Regression: fixed 'no matching class member found for' warning in OpenMSX ↵Dimitri van Heesch2020-12-231-2/+2
| | | | project
* issue #8274: List entries for file & namespace enumsDimitri van Heesch2020-12-231-76/+65
|
* Refactoring: replace NamespaceSDict by NamespaceLinkedMapDimitri van Heesch2020-12-231-71/+56
|
* issue #6471: Out-of-line documentation of scoped enumsDimitri van Heesch2020-12-221-3/+76
|
* Fixed more issues handling Java nested generic classes (part 2)Dimitri van Heesch2020-12-221-2/+6
|
* Fixed more issues handling Java nested generic classesDimitri van Heesch2020-12-221-2/+28
|
* Refactoring: remove unused Doxygen::genericsSDictDimitri van Heesch2020-12-221-23/+2
|
* Fixed scope resolution problem for nested Java genericsDimitri van Heesch2020-12-221-8/+13
|
* Regression: Fixed crash while processing the Kafka package.Dimitri van Heesch2020-12-201-1/+0
|
* Removed unused taggedInnerClasses memberDimitri van Heesch2020-12-191-1/+0
|
* Refactoring: replace ClassSDict by ClassLinkedMap/ClassLinkedRefMapDimitri van Heesch2020-12-191-210/+182
|
* Add param validation to typedef function pointersFabio Utzig2020-12-171-1/+1
| | | | | | | | | | Currently typedef'd function pointers, typically used as callbacks, don't have their `@param` documentation properly validated. This commit adds a proper check by initializing their memberdef with the parsed args. To avoid duplicating the params in the output, since typedef's already have the params in their definition, an extra check was added. Signed-off-by: Fabio Utzig <fabio.utzig@nordicsemi.no>
* Merge pull request #8197 from albert-github/feature/issue_8023Dimitri van Heesch2020-12-021-0/+1
|\ | | | | issue #8023 Add option to exit with non-zero exit code on warnings even if WARN_AS_ERROR is OFF
| * issue #8023 Add option to exit with non-zero exit code on warnings even if ↵albert-github2020-11-231-0/+1
| | | | | | | | | | | | | | WARN_AS_ERROR is OFF In case we want for a Continuous integration system a non-zero exit status at the end of a doxygen we can now set `WARN_AS_ERRORS=FAIL_ON_WARNINGS`. The behavior for `NO` and `YES` remains as it was.
* | Improve handling of inline namespace members in LateX/RTF outputDimitri van Heesch2020-12-021-0/+1
| |
* | Missing \noop in list with commands starting with "\n" for escaping in aliasesalbert-github2020-11-281-0/+1
|/ | | | Added `\noop` to list.
* issue #8070: C++: \var don't document enum class valuesDimitri van Heesch2020-11-221-1/+26
|
* issue #8192: Excluded inline namespace broken after a5792da8Dimitri van Heesch2020-11-211-49/+77
| | | | | | - Further fixes to make classes inside inline namespaces appear in the parent scope again. - Also added a test case to check for regression
* issue #8192: Excluded inline namespace broken after a5792da8Dimitri van Heesch2020-11-211-2/+2
|
* Refactoring: removing setVisited/isVisited membersDimitri van Heesch2020-11-201-81/+19
|
* issue #8177: Incorrect inheritance with forward declared templated classesDimitri van Heesch2020-11-171-14/+9
|