| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |/ |
|
| |\
| | |
| | | |
Some regressions on the template approach
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Although the templated approach is highly experimental there are a number of regressions fixed:
- context.cpp
- incorrect if condition due to: Refactoring: cleanup unused qtools headers (commit: b89561e0c61aec5cae6eafc354f81a3bf071a777)
- garbled messages due to missing end of line in message
- htmllayout.tpl
- doxygen.luma has been replaced by doxygen.cpp
|
| |\ \
| | | |
| | | | |
Regression: dead code in configimpl.l
|
| | |/
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
According to coverity:
```
CID 315169 (#1 of 1): Structurally dead code (UNREACHABLE)unreachable: This code cannot be reached: if (!fileOpened) {
config....
```
this problem has been introduced in: Refactoring: replace QFile/FTextStream with fstream/stringstream (Commit: fa1897b1889f7bf74de68f1ac99cf3be343a7551)
|
| |\ \
| | |/
| |/| |
Regression: dead code in classdef.cpp
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
According to coverity:
```
assignment: Assigning: firstSpan = true.
3037 bool firstSpan=true;
3038 for (const auto &s : sl)
3039 {
cond_const: Condition firstSpan, taking true branch. Now the value of firstSpan is equal to 1.
const: At condition firstSpan, the value of firstSpan must be equal to 1.
dead_error_condition: The condition !firstSpan cannot be true.
3040 if (!firstSpan)
3041 {
CID 315162 (#1 of 1): Logically dead code (DEADCODE)dead_error_begin: Execution cannot reach this statement: ol->writeString("</span><sp....
3042 ol.writeString("</span><span class=\"mlabel\">");
3043 firstSpan=false;
3044 }
```
this problem has been introduced in: Refactoring: Replaced QDir with Dir (Commit: 0d05e79d67b5b808918541f429b06805207e8bdb)
Reformulated loop and condition, also it is not guaranteed that the list contains a member so adjested also for an empty list/
|
| |\
| | |
| | | |
Spelling correction
|
| | |
| | |
| | |
| | | |
Spelling corrections as found by Fossies
|
| |\ \
| | | |
| | | | |
Correcting spelling errors in filesystem.hpp
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Correcting spelling errors in filesystem.hpp
(reported upstream as https://github.com/gulrak/filesystem/pull/109)
|
| |\ \
| | | |
| | | | |
Building Cygwin version of doxygen fails
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The ghc filesystem does not support, resulting in:
```
.../src/filesystem.hpp:76:2: error: #error "Operating system currently not supported!
76 | #error "Operating system currently not supported!"
| ^~~~~
```
Added Cygwin in selection of supported "GHC_OS_DETECTED".
|
| | | |
|
|/ /
| |
| |
| | |
vice versa
|
| | |
|
| |
| |
| |
| |
| | |
- Dir is based on ghc::filesystem, a std::filesystem compatible
implementation that does not require C++17.
|
| |
| |
| |
| |
| | |
- FileInfo is based on ghc::filesystem, a std::filesystem compatible
implementation that does not require C++17.
|
|\ \ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Correction warnings (64-bit windows) like: warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
- context.cpp also making test a bit better readable
Co-authored-by: Dimitri van Heesch <doxygen@gmail.com>
|
| |\ \
| | | |
| | | | |
Missing build note for sqlite3
|
| | | |
| | | |
| | | |
| | | | |
The reference, analogous to what is present for clang, regarding the need of compiling doxygen with `-Duse_sqlite3=ON` was missing
|
| |\ \ \
| | |/ /
| |/| | |
Issue #8405 Dead link in documentation
|
| |/ /
| | |
| | |
| | | |
Correcting the link in the documentation to a wayback / archive machine.
|
|/ / |
|
|\ \ |
|
| |\ \
| | | |
| | | | |
Problems generating chm documentation
|
| | |/
| | |
| | |
| | |
| | |
| | |
| | | |
Generating doxygen's own manual in chm mode crashed (`qmake doc s_chm`). The problem was introduced during:
Refactoring: replace QRegExp by std::regex in htmlhelp.cpp (1d993b03f)
Looks like that a std::string cannot add a null pointer to a std::string
|
|/ / |
|
|\ \
| |/ |
|
| |\
| | |
| | | |
issue #8390 Reusing documentation snippets
|
| | |
| | |
| | |
| | | |
When `MARKDOWN_SUPPORT` is enabled run the documentation of the included file / snippet through the markdown processor (analogous to comment blocks in the different scanners).
|
|/ / |
|
| | |
|
|\ \ |
|
| | | |
|
| |\ \
| |/ /
|/| | |
|
|\ \ \
| | | |
| | | | |
Correction end tag in documentation
|
| | |/
| |/|
| | |
| | | |
Small documentation correction (missing `/` in end tag).
|
|\ \ \
| | | |
| | | | |
Strange HTML tab title in case of a page without title
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
In case we have an example like:
```
/// @page Bug_err
///
/// \brief Some text in cpp file
/// \details Some detailed text in cpp file
```
we will have as in the HTML tab: `Project Title: $title` as the page has an empty title.
A better title would in this case be: `Project Title: Bug_err`.
This has been implemented by setting the name of the page in the empty title. In case of a main page the xml output sets the empty title to the PROJECT_NAME, as the new, default, setting would see to it that also the mainpage with an empty title would be set we have to see that this is done beforehand.
|
|\ \ \ \
| | | | |
| | | | | |
Missing CLANG dependency
|
| | | | |
| | | | |
| | | | |
| | | | | |
For the tag `CLANG_ADD_INC_PATHS` the dependency to the rag `CLANG_ASSISTED_PARSING` was missing, giving in the doxywizard the wrong impression about this tag.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Spelling correction
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
Spelling corrections as found by Fossies
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \ |
|
| |\ \ \ \ \
| | | | | | |
| | | | | | | |
Correction of spelling error
|