Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix for broken LaTeX output. | Dimitri van Heesch | 2020-09-27 | 1 | -1/+1 |
| | | | | | | Fixes error: "\begin{DoxyCodeInclude} on input line 93 ended by \end{DoxyCode}" while generating the LaTeX version of the manual | ||||
* | Refactoring: prepare output generators for multi-threaded use | Dimitri van Heesch | 2020-09-27 | 1 | -3/+3 |
| | |||||
* | Refactoring: making vhdlcode.l reentrant | Dimitri van Heesch | 2020-09-13 | 1 | -3/+6 |
| | | | | | Also fixed a few VHDL related memory leaks and one newly introduced Fortran memory leak. | ||||
* | Unused variable in code (VHDL) | albert-github | 2020-07-17 | 1 | -1/+0 |
| | | | | Due to #7864 the variable p is unused (and getFlowMember is just an access function to a flowMember). | ||||
* | Merge pull request #7864 from maddox11/use_plantuml | Dimitri van Heesch | 2020-07-16 | 1 | -1/+1 |
|\ | | | | | improve using plantuml for vhdl flowcharts | ||||
| * | improve using plantuml for vhdl flowcharts | hake | 2020-06-21 | 1 | -1/+1 |
| | | |||||
* | | Refactor: Modernize clang parser and make it run with multiple threads | Dimitri van Heesch | 2020-07-16 | 1 | -4/+2 |
| | | |||||
* | | Misleading compiler warning | albert-github | 2020-06-30 | 1 | -4/+2 |
|/ | | | | | | | | | | | | | | | | | When compiling on Cygwin (gcc version 9.3.0 (GCC)) in release mode we get: ``` In file included from /cygdrive/d/Programs/Doxygen/fork/doxygen/src/vhdldocgen.cpp:27: /cygdrive/d/Programs/Doxygen/fork/doxygen/qtools/qcstring.h: In static member function ‘static void FlowChart::colTextNodes()’: /cygdrive/d/Programs/Doxygen/fork/doxygen/qtools/qcstring.h:364:23: warning: ‘flno’ may be used uninitialized in this function [-Wmaybe-uninitialized] 364 | if (str) m_rep+=str; | ^~~ /cygdrive/d/Programs/Doxygen/fork/doxygen/src/vhdldocgen.cpp:3178:14: note: ‘flno’ was declared here 3178 | FlowChart *flno; | ^~~~ ``` The compiler doesn't "understand" that `flno` is guarded by `found` and this would be initialized. Local variable `text` is not used so removed. | ||||
* | Refactor: modernize markdown and make it thread-safe | Dimitri van Heesch | 2020-06-16 | 1 | -4/+7 |
| | |||||
* | Refactor: modernize configuration values | Dimitri van Heesch | 2020-06-04 | 1 | -4/+3 |
| | |||||
* | Added experimental multi-thread input processing support. | Dimitri van Heesch | 2020-05-31 | 1 | -4/+4 |
| | | | | | This is disabled by default. It can be enabled by setting MULTITHREADED_INPUT to 1 in doxygen.h. Still has many data races, so don't use for anything other than development! | ||||
* | Merge branch 'filenamedict' | Dimitri van Heesch | 2020-04-06 | 1 | -37/+1 |
|\ | |||||
| * | Replaced FileNameDict/FileNameList by FileNameLinkedMap | Dimitri van Heesch | 2020-04-06 | 1 | -37/+1 |
| | | |||||
* | | Fix html file ext in external docs (#7679) | avostrik | 2020-04-01 | 1 | -1/+1 |
|/ | | | | | | | | | | | | * Add HTML extension to url conditionally in tree view item. This change fixes issue with double extension in treeview file list items generated from external tag file. Items that were read from tag file already have extension. * Add missing HTML file extension in writeTagFile() calls * Unify addition of HTML file extension in writeTagFile calls. Signed-off-by: Andrey Vostrikov <andrey.vostrikov@cogentembedded.com> | ||||
* | Fix not correctly formatted messages | Moritz 'Morty' Strübe | 2020-03-21 | 1 | -9/+7 |
| | |||||
* | Issue #7635: Incorrect location for enum in XML file (part 3) | Dimitri van Heesch | 2020-03-17 | 1 | -1/+1 |
| | |||||
* | Enabled stricter compiler warnings and fixed all new warnings | Dimitri van Heesch | 2020-03-08 | 1 | -126/+19 |
| | |||||
* | Merge branch 'master' into vhdl-fixed-bug-7432 | Dimitri van Heesch | 2020-02-08 | 1 | -9/+9 |
|\ | |||||
| * | Merge pull request #7529 from albert-github/feature/bug_vhdl_debug | Dimitri van Heesch | 2020-02-02 | 1 | -9/+9 |
| |\ | | | | | | | Correct handling of error / removed debug statement | ||||
| | * | Correct handling of error / removed debug statement | albert-github | 2020-01-22 | 1 | -9/+9 |
| | | | | | | | | | | | | | | | | | | In the vhdldocgen: - error should be handled in a doxygen consistent way (in this case with an err call) - removed left over debug statment (found through #7528) | ||||
* | | | vhdl-fixed-bug-7432 | hake | 2020-02-04 | 1 | -43/+21 |
|/ / | |||||
* | | Cleanup unused/unwanted parser dependencies on code generator | Dimitri van Heesch | 2020-01-26 | 1 | -1/+1 |
|/ | |||||
* | Make VHDL parser reentrant | Dimitri van Heesch | 2020-01-03 | 1 | -35/+2 |
| | |||||
* | Merge branch 'master' into spelling | Dimitri van Heesch | 2019-12-23 | 1 | -51/+12 |
|\ | |||||
| * | Renamed Portables to Portable | Dimitri van Heesch | 2019-12-08 | 1 | -2/+2 |
| | | |||||
| * | Merge branch 'memory_leakage_fix' of https://github.com/virusxp/doxygen into ↵ | Dimitri van Heesch | 2019-12-08 | 1 | -2/+2 |
| |\ | | | | | | | | | | virusxp-memory_leakage_fix | ||||
| | * | Refactoring of portable.h and portable.cpp functions to be contained in a ↵ | Tobias Off | 2019-11-28 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | namespace Fixing some memory issues caused by not correctly freed pointers | ||||
| * | | Changed std::unique_ptr<Entry> to std::shared_ptr<Entry> at avoid use after ↵ | Dimitri van Heesch | 2019-12-08 | 1 | -4/+4 |
| | | | | | | | | | | | | free issues | ||||
| * | | Split language parser into "outline parser" and "code parser" | Dimitri van Heesch | 2019-12-03 | 1 | -45/+6 |
| |/ | |||||
* | | spelling: table | Josh Soref | 2019-11-12 | 1 | -3/+3 |
|/ | |||||
* | Fixed use of uninitialized data in VHDL generator | Dimitri van Heesch | 2019-11-09 | 1 | -5/+8 |
| | |||||
* | Embed TagInfo struct inside Entry | Dimitri van Heesch | 2019-10-28 | 1 | -1/+0 |
| | |||||
* | Changed ArgumentList to be an STL container | Dimitri van Heesch | 2019-10-27 | 1 | -110/+61 |
| | |||||
* | Use smartpointers to manage the lifetime of Entry objects | Dimitri van Heesch | 2019-10-07 | 1 | -15/+9 |
| | |||||
* | issue 7166: Doxygen calls DOT differently depending on the output ↵ | Dimitri van Heesch | 2019-08-07 | 1 | -2/+2 |
| | | | | optimization selected. | ||||
* | Add const correctness for argument lists | Dimitri van Heesch | 2019-05-05 | 1 | -1/+1 |
| | |||||
* | Improved const correctness and added support for inline namespaces | Dimitri van Heesch | 2019-04-21 | 1 | -55/+56 |
| | |||||
* | Refactored Definition and derived classes such that they are abstract interfaces | Dimitri van Heesch | 2019-02-28 | 1 | -2/+2 |
| | |||||
* | Merge branch 'run_java_once_3rd_trial' of ↵ | Dimitri van Heesch | 2019-01-08 | 1 | -2/+2 |
| | | | | https://github.com/cheoljoo/doxygen into cheoljoo-run_java_once_3rd_trial | ||||
* | merge | Charles.Lee | 2018-12-24 | 1 | -6/+7 |
|\ | |||||
| * | XHTML problem with name attribute with VHDL name attribute | albert-github | 2018-12-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | When running xhtml checker on the doxygen diagram example we get: Syntax of value for attribute name of a is not valid Document mux/xhtml/classmux__using__with.xhtml does not validate This is due to a space in the name tag, substituting the appropriate code solves the problem. As this is a VHDL specific problem only these strings are converted. | ||||
| * | Merge remote-tracking branch 'doxygen/master' | Joe George | 2018-11-05 | 1 | -2/+2 |
| |\ | |||||
| | * | Merge pull request #6562 from albert-github/feature/bug_references | Dimitri van Heesch | 2018-11-04 | 1 | -2/+2 |
| | |\ | | | | | | | | | Add commands to handle referenced by relation and references relation | ||||
| | | * | Add commands to handle referenced by relation and references relation | albert-github | 2018-10-17 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Analogous to call graph and caller graph this patch provides an implementation for the referenced by relation and references relation. Providing the commands: - referencedbyrelation - hidereferencedbyrelation - referencesrelation - hidereferencesrelation Motivation is that some lists can get extremely large and also there is now more symmetry between the textual and graphical out. | ||||
| * | | | Merge remote-tracking branch 'doxygen/master' | Joe George | 2018-11-02 | 1 | -2/+2 |
| |\ \ \ | | |/ / | |||||
| | * | | Correction of some coloring of code comments in VHDL, adding data type ↵ | albert-github | 2018-08-24 | 1 | -2/+2 |
| | |/ | | | | | | | | | | 'positive' | ||||
| * | | Added *.ice files as a recognized file type. | Mark Spruiell | 2018-10-22 | 1 | -1/+2 |
| |/ | | | | | | | Added a Slice-optimized output mode. | ||||
* | | add format in writePlantUMLSource() and gathered in one pu file. But it is ↵ | Charles.Lee | 2018-08-28 | 1 | -1/+1 |
|/ | | | | not final | ||||
* | Bug 691689 - Line numbers for examples | Dimitri van Heesch | 2018-08-19 | 1 | -34/+34 |
| | |||||
* | Merge branch 'master' into vhdl-localization | Andreas Regel | 2018-05-28 | 1 | -6/+8 |
|\ | | | | | | | | | # Conflicts: # src/translator.h |