| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\ |
|
| | |
|
| | |
|
| | |
|
| | |
|
|/ |
|
| |
|
|\
| |
| | |
Problem with empty buffer in pyscanner.l
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
After commit:
```
Commit: 9533e6d6e8e69954593da006ab00ea362980bc76
Date: Wednesday, March 24, 2021 11:44:20 PM
Regression: fix potential lockup while parsing python code
```
the package fwupd-1.5.8 crashes with:
```
Reading /cygdrive/e/Fossies/fwupd-1.5.8/contrib/firmware_packager/__init__.py...
Parsing file /cygdrive/e/Fossies/fwupd-1.5.8/contrib/firmware_packager/__init__.py...
Thread 1 "doxygen" received signal SIGSEGV, Segmentation fault.
0x000000010065ea24 in yyread (yyscanner=0x8005d6930, buf=0x6ffffff60010 "", max_size=262143)
at .../doxygen/src/pyscanner.l:1443
1443 yyextra->inputPosition+=c;
```
|
| |
|
|
|
|
| |
vice versa (part 2)
|
| |
|
| |
|
| |
|
|\ |
|
| |\
| | |
| | | |
Maintenance doxygen internal Doxyfiles
|
| | |
| | |
| | |
| | | |
The Doxyfiles for the doxygen internal doxygen documentation had some obsolete entries and was lacking a new file (filesystem.hpp)
|
| |\ \
| | | |
| | | | |
Maintenance of .gitignore
|
| | |/
| | |
| | |
| | | |
A file and a directory, generated by the doxygen internal documentation, were not excluded from the list that should go into the repository.
|
| |\ \
| | |/
| |/| |
Fix deadlock when using `WARN_AS_ERROR = YES`.
|
| |/ |
|
| |\
| | |
| | | |
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.
|