| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
|\ |
|
| | |
|
| |\
|/ /
| |
| | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_786382
|
| |
| |
| |
| |
| |
| |
| | |
Based on the definition in the (informative) Annex A of the C++ draft 2020 standard (N4849, part [gram.lex]), the definitions have been made for the lexer.
Now integer and floating point constants wit a single quote are seen as numbers and not as part of character constants.
(also tested on CGAL)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Initialized member variables inside the class
- Added copy & assign operators for OutputGenerator and Derived classes.
- throw a runtime exception when OutputGenerator is copied while is file
is still in progress.
- Added clone method to make a copy of OutputList.
- Moved the implementation of enable() & disable() and friend into
OutputGen instead of having the same implementation in each derived
class.
- Made m_dir and m_fileName readonly (members dir() and fileName())
- Removed call to new while adding generators to OutputList
- Replaced QStack by std::stack for the "enabled" state.
|
| | |
|
| | |
|
|/ |
|
|
|
|
|
| |
- reverted some of the change that introduced the problem
- fixed the original problem (#7216) in a different way
|
|\
| |
| | |
issue #7970 Doxygen doesn't stop on errors
|
|/
|
|
| |
Routines doing their own formatting should also stop when `WARN_AS_ERROR` is set.
|
|\
| |
| | |
Format for size_t (in e.g. warnings)
|
|/
|
|
| |
This one was a bit hidden in conditional compilation (see also #7966).
|
|
|
|
| |
leak) (part 2)
|
|\
| |
| | |
Format for size_t (in e.g. warnings)
|
|/
|
|
|
|
|
|
|
|
|
| |
From the C standard paragraph 7.21.6.1 The fprintf function
```
z
Specifies that a following d, i, o, u, x, or X conversion specifier applies to a size_t or the
corresponding signed integer type argument; or that a following n conversion specifier
applies to a pointer to a signed integer type corresponding to size_t argument.
```
|
|\
| |
| | |
Spelling correction
|
| |
| |
| |
| | |
Small spelling correction as found by spellcheck through Fossies
|
|\ \
| |/ |
|
| |\
| | |
| | | |
Building documentation after changing language files
|
| |/
| |
| |
| |
| |
| |
| |
| |
| | |
- make `GLOB` for language files consistent with `GLOB` usage in e.g. `src`
- make building of `language.doc ` depending on the language files as well
- don't copy translator and other input files and handle this also in translator.py
- update documentation
(Found after Swedish language was updated and tried to build documentation on a non new directory)
|
| | |
|
|\ \
| |/ |
|
| |\
| | |
| | | |
Layout on the bibliography page
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When having a bit a long citation description, the description runs, in the HTML output on the bibliography page, into 3 or more lines where the 3rd and following lines continue underneath the citation number like:
```
[1] Eric Berberich, Arno Eigenwillig, Michael Hemmer, Susan Hert, Lutz Kettner, Kurt Mehlhorn, Joachim Reichel, Susanne Schmitt, Elmar Schömer, and Nicola Wolpert. Exacus: Efficient and exact
algorithms for curves and surfaces. In Gerth S. Brodal and Stefano Leonardi, editors, 13th Annual European Symposium on Algorithms (ESA 2005), volume 3669 of Lecture Notes in Computer Science,
pages 155–166, Palma de Mallorca, Spain, October 2005. European Association for Theoretical Computer Science (EATCS), Springer.
```
The example was found in the CGAL repository
- corrected the "overflow"
- made the citation number right aligned
|
|/ / |
|
|\ \
| | |
| | | |
Improvement of line count for e.g. warnings
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
When having a file like (but extended example based on a problem found in CGAL where line numbers were a bit off):
```
/*! The <hr2> class `Face_filtered_graph` is an adaptor that creates a filtered view of a graph */
struct Face_filtered_graph_no_det
{
/*!
* \brief constructs an empty face filtered graph (no face is selected)
*
*
*
*
*
*
*
*
* <table class="params">
* something
* something
* </table>
*
*
*
*
*
*
*
*
* <table class="params">
* something
* something
* </table>
*/
Face_filtered_graph_no_det();
}
```
we get:
```
.../no_det.h:1: warning: Unsupported xml/html tag <hr2> found
.../no_det.h:5: warning: expected <tr> tag but found TK_LNKWORD token instead!
.../no_det.h:17: warning: expected <tr> tag but found TK_LNKWORD token instead!
```
instead of:
```
.../no_det.h:1: warning: Unsupported xml/html tag <hr2> found
.../no_det.h:14: warning: expected <tr> tag but found TK_LNKWORD token instead!
.../no_det.h:26: warning: expected <tr> tag but found TK_LNKWORD token instead!
```
Line counting is in an interpreter, especially when merging blocks etc.) a difficult situation.
- `util.cpp`: `\ilinebr` is an internal newline, but the line count should not be increased
- `commentscan.l`
- put empty lines in output as well otherwise they are missing in the line count
- don't insert `\n` to separate blocks, but use the artificial `\ilinebr`
- properly initialize the `docLine` (important for examples were at the beginning of the block there are a number of newlines
|
|\ \
| | |
| | | |
Fixes doxygen/doxygen#7760: void return type reported as not documented
|
| |/ |
|
|\ \
| |/
|/| |
Updated the swedish language translation to 1.8.19
|
|/ |
|
|\ |
|
| |\
| | |
| | | |
Using Python docstrings
|
| | |
| | |
| | |
| | |
| | | |
- making documentation a bit clearer
- add configuration setting to have docstrings not as preformatted text but as normal documentation (default remains preformatted).
|
| |\ \
| | | |
| | | | |
Spelling corrections is comments
|
| |/ /
| | |
| | |
| | | |
Some spelling omissions found by Fossies.
|
| |\ \
| | | |
| | | | |
HTML errors in change log
|
| |/ /
| | |
| | |
| | | |
There were a few logical errors in the changelog , corrected.
|
|/ /
| |
| |
| | |
ignored
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \ |
|