| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
very popular)
|
| |
|
| |
|
|\ |
|
| |
| |
| | |
Output the doxygen version with the normal progress messages (and suppress in case of QUIET=YES).
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Fix C compiler warnings about C++ flags
```
cc1: warning: command line option ‘-Wnon-virtual-dtor’ is valid for C++/ObjC++ but not for C
cc1: warning: command line option ‘-Woverloaded-virtual’ is valid for C++/ObjC++ but not for C
```
... using the generator expression `$<COMPILE_LANGUAGE:CXX>`.
* COMPILE_LANGUAGE is new in CMake 3.3
See https://cmake.org/cmake/help/v3.3/release/3.3.html
* CMake 3.3 is required
|
|/ |
|
|\ |
|
| | |
|
|/ |
|
| |
|
| |
|
|\ |
|
| | |
|
|/ |
|
|\
| |
| | |
Fix #7490 and #7494
|
| |
| |
| |
| |
| | |
Fix following issues:
#7490 multiple grouped functions (member groups)
#7494 grouped members from files ("user-defined")
|
|\ \ |
|
| | | |
|
| |\ \
|/ / /
| | |
| | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_tables_docbook
|
| | |
| | |
| | |
| | |
| | | |
In case of docbook output and having nesting tables (e.g. in the tables chapter of the doxygen documentation), we get invalid xml for docbook as the `<tbody>` is not closed.
Each table level should have an own flag to signal whether or not the `<tbiody>` tag is set or not, otherwise the inner table resets the outer tables its "flag".
|
| | | |
|
|\ \ \ |
|
| |\ \ \
| | | | |
| | | | | |
issue #7583 External Links in Inheritance Diagrams open in the Image Frame.
|
| | | | |
| | | | |
| | | | |
| | | | | |
When having a function it opens in the current frame and uses the complete frame. Images (e.g. inherited diagrams) are displayed in a small "sub frame" and when displaying the link here it is not readable and furthermore the user doesn't know anything about the "sub frame". In case of an image the link should be displayed in the parent frame of the image.
|
| |\ \ \ \
| | | | | |
| | | | | | |
Problem with temporary / intermediate directory in doxyparse
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
When we want to use doxyparse under Windows we get the message like:
```
error: tag OUTPUT_DIRECTORY: Output directory '/tmp/doxyparse-9848' does not exist and cannot be created
```
as this is a *nix type path and the '/tmp', normally doesn't exists on Windows, better to see what is the real temporary directory (on all systems) and make everything system independent.
|
| |\ \ \ \ \
| | | | | | |
| | | | | | | |
Problem in case using PREDEFINED with comma and using +=
|
| | |/ / / /
| | | | | |
| | | | | |
| | | | | | |
In pull request #7603 the problem regarding `PREDEFINED = A(x,y)`, but the same patch must be applied to the construct `PREDEFINED += A(x,y)`
|
|/ / / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
output on doxyparse if a function is a prototype
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
issue #5618
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Removing warnings from doxygen internal documentation
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Although there is not a lot of doxygen internal documentation, it still should not produce warnings.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Incorrect handling of typedef in combination with const
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
I issue #7060 and example was given with
```
typedef const char m_msgEvtName;
```
we see that
- 1.8.15, listed under Typedefs:
` typedef const char m_msgEvtName`
- 1.8.16 and up, listed under Variables:
`const typedef char m_msgEvtName`
so mentioned:
- wrong "header"
- const at the wrong place
This is a regression on:
C# consts incorrectly placed under instance variables (Origin: bugzilla #535853) (issue #2976)
and the pull request #7048
The fix should only be used for C#
|
|\ \ \ \
| |/ / /
|/| | | |
Disappearing words in RTF output after a list
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
When having the simple example:
```
First list
- Item 1 1
Second list
- Item 2 1
```
in the RTF output the word `Second` disappears due to the fact that the is no space between a `\par` command and the word `Second`
|
|\ \ \ \
| | | | |
| | | | | |
Compilation warnings
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Due to
```
Commit: 1a56a39b4a97452a5c7c2d8e9d39ab28ca33dff0 [1a56a39]
Commit Date: Friday, February 21, 2020 9:07:13 PM
Restructure section handling
```
a number of compilation warnings (Windows) appeared:
```
c:\projects\doxygen\src\section.h(51): warning C4099: 'SectionInfo': type name first seen using 'struct' now seen using 'class' [C:\projects\doxygen\build\src\_doxygen.vcxproj]
c:\projects\doxygen\src\section.h(50): note: see declaration of 'SectionInfo'
```
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Specifying filename in preprocessor debug output
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
Especially when running with `QUIET=YES` it is no clear which file is preprocessed, so the filename is added to the preprocessor debug output
|
| | | | |
| | | | |
| | | | |
| | | | | |
documented const functions
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
issue #7606 Unable to build "master" branch
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
regression on:
```
Commit: 1a56a39b4a97452a5c7c2d8e9d39ab28ca33dff0 [1a56a39]
Commit Date: Friday, February 21, 2020 9:07:13 PM
Restructure section handling
```
when sqlite3 has been enabled for the build.
|
| | | | |
|