Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix compiler warnings on Windows (Visual Studio) | Dimitri van Heesch | 2020-02-12 | 1 | -1/+1 |
| | |||||
* | Removed exitCode parameter as it is always 1 | Dimitri van Heesch | 2019-12-22 | 1 | -16/+2 |
| | |||||
* | Merge branch 'feature/bug_terminate' of ↵ | Dimitri van Heesch | 2019-12-22 | 1 | -0/+28 |
|\ | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_terminate | ||||
| * | Better termination message | albert-github | 2019-11-22 | 1 | -0/+28 |
| | | | | | | | | | | In case a `WARN_LOGFILE` is used it in this file no clear whether doxygen finished correctly or exited beforehand in case a fatal error. Now a 'Exiting...' is also given in the warning log file in case an error is a fatal error. | ||||
* | | Renamed Portables to Portable | Dimitri van Heesch | 2019-12-08 | 1 | -1/+1 |
| | | |||||
* | | Refactoring of portable.h and portable.cpp functions to be contained in a ↵ | Tobias Off | 2019-11-28 | 1 | -1/+1 |
|/ | | | | | | namespace Fixing some memory issues caused by not correctly freed pointers | ||||
* | Fixed segmentation fault in do_warn | Matthew Hatch | 2019-05-08 | 1 | -1/+5 |
| | | | | Copied va_list to avoid reuse causing crash | ||||
* | Truncated warning message | albert-github | 2019-05-06 | 1 | -3/+11 |
| | | | | | | | | | In case of extremely long warning messages (e.g. in case of overloaded methods with a lot of alternatives) the warning message is truncated due to the "limited" buffer size. By using `vsnprintf(NULL, 0, fmt, args)` it is possible to determine the length of the message based on format and actual arguments. `char text[bufSize]` cannot be used as some older compilers don't accept it. (reference: https://stackoverflow.com/questions/3919995/determining-sprintf-buffer-size-whats-the-standard/30909417#30909417) | ||||
* | Changed configuration mechanism to directly access options in order to ↵ | Dimitri van Heesch | 2016-01-17 | 1 | -18/+18 |
| | | | | improve performance | ||||
* | Reverted change that caused doxygen to return error code 2 when it produced ↵ | Dimitri van Heesch | 2015-12-19 | 1 | -5/+6 |
| | | | | a warning | ||||
* | Add WARN_AS_ERROR option to stop execution at first warning (equivalent of ↵ | Gautier Pelloux-Prayer | 2015-12-16 | 1 | -10/+24 |
| | | | | compilers' -Werror option) | ||||
* | Bug 333106 - $line param | albert-github | 2015-07-28 | 1 | -3/+3 |
| | | | | Due to the order of the substitutions the $line was also substituted in the text part. Now the text part is added at the end and the substitution does not take place. | ||||
* | Guarded debug prints against printing a NULL pointer. | Dimitri van Heesch | 2015-04-06 | 1 | -4/+4 |
| | |||||
* | Merge pull request #303 from albert-github/feature/bug_idl_error | Dimitri van Heesch | 2015-03-05 | 1 | -1/+9 |
|\ | | | | | Better error message in case of IDL inconsistency | ||||
| * | Better error message in case of IDL inconsistency | albert-github | 2015-03-04 | 1 | -1/+9 |
| | | | | | | | | | | | | | | | | In case of an IDL internal doxygen inconsistency ("error: Internal inconsistency: namespace in IDL not module, library or constant group ", see forum report: http://doxygen.10944.n7.nabble.com/Internal-inconsistency-Which-file-td7057.html) it is hard to find out which file causes the problem. In this case the comment block with @namespace was the "problem"). This patch solves this by adding the file and line number of the source file causing the problem. | ||||
* | | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
|/ | |||||
* | Fixed several Coverity warnings | Dimitri van Heesch | 2014-11-15 | 1 | -4/+5 |
| | |||||
* | Messages truncated in warnings file | albert-github | 2014-07-30 | 1 | -3/+3 |
| | | | | | | | The current limit for a message length in the messages file is 4095 characters. Most of the time this is more than sufficient, but in case of Fortran and a lot of arguments this might not be sufficient. With Fortran the "data type" can be quite long as it can also includes words like: double precision, dimension, intent(inout) etc. When we have a lot of arguments and just one is described it also tries to write out the names of the non-described parameter/ arguments with the word parameter prepended resulting in an even longer line. This patch increases the size of the buffer. | ||||
* | Updated copyright | Dimitri van Heesch | 2014-02-11 | 1 | -1/+1 |
| | |||||
* | Fixed potential crash caused by overloading the variadic warn function | Dimitri van Heesch | 2014-01-18 | 1 | -1/+1 |
| | |||||
* | More work on the template and context mechanisms | Dimitri van Heesch | 2013-12-29 | 1 | -2/+7 |
| | |||||
* | Fixed constness warning | Dimitri van Heesch | 2013-11-17 | 1 | -7/+4 |
| | |||||
* | Debug output for lexical analyzer | Albert | 2013-11-13 | 1 | -0/+28 |
| | | | | | | | | | | | | | | In case of error messages like: input buffer overflow, can't enlarge buffer because scanner uses REJECT it is not always directly clear from which lexical analyzer (.l file) this problem comes. This patch helps to find these problems and does the following things: - when using the option -d lex with doxygen each time a lexical analyzer is called at the start a line like the following line will be given: Entering lexical analyzer: pre.l (for: ..../file.c) and at the end: Finished lexical analyzer: pre.l (for: ..../file.c) - in case the lexical analyzer has been translated with the -d option of lex / flex the above mentioned lines will be given as part of the lexical analyzer output (to stderr) and look like: --entering lexical analyzer: pre.l (for: ..../file.c) --finished lexical analyzer: pre.l (for: ..../file.c) | ||||
* | Bug 701550 - Error List window in Visual Studio no longer recognizes doxygen ↵ | Dimitri van Heesch | 2013-06-04 | 1 | -2/+2 |
| | | | | warnings | ||||
* | Release-1.8.3.1-20130512 | Dimitri van Heesch | 2013-05-12 | 1 | -7/+23 |
| | |||||
* | Release-1.8.3.1 | Dimitri van Heesch | 2013-01-20 | 1 | -1/+1 |
| | |||||
* | Release-1.8.2-20121118 | Dimitri van Heesch | 2012-11-18 | 1 | -0/+1 |
| | |||||
* | Release-1.7.6.1-20120220 | Dimitri van Heesch | 2012-02-20 | 1 | -1/+1 |
| | |||||
* | Release-1.7.4 | Dimitri van Heesch | 2011-03-28 | 1 | -10/+18 |
| | |||||
* | Release-1.7.3-20110123 | Dimitri van Heesch | 2011-01-23 | 1 | -1/+1 |
| | |||||
* | Release-1.7.1-20100920 | Dimitri van Heesch | 2010-09-20 | 1 | -2/+3 |
| | |||||
* | Release-1.7.0 | Dimitri van Heesch | 2010-06-15 | 1 | -1/+2 |
| | |||||
* | Release-1.6.3-20100603 | Dimitri van Heesch | 2010-06-03 | 1 | -10/+0 |
| | |||||
* | Release-1.6.2-20100124 | Dimitri van Heesch | 2010-01-24 | 1 | -1/+1 |
| | |||||
* | Release-1.5.9-20090814 | Dimitri van Heesch | 2009-08-14 | 1 | -1/+1 |
| | |||||
* | Release-1.5.4-20080101 | Dimitri van Heesch | 2008-01-17 | 1 | -2/+2 |
| | |||||
* | Release-1.5.4 | Dimitri van Heesch | 2008-01-16 | 1 | -1/+1 |
| | |||||
* | Release-1.5.1-20070219 | Dimitri van Heesch | 2007-02-19 | 1 | -1/+1 |
| | |||||
* | Release-1.5.1-20070107 | Dimitri van Heesch | 2007-01-07 | 1 | -1/+1 |
| | |||||
* | Release-1.5.1-20061202 | Dimitri van Heesch | 2006-12-02 | 1 | -1/+1 |
| | |||||
* | Release-1.4.6-20060507 | Dimitri van Heesch | 2006-05-07 | 1 | -1/+1 |
| | |||||
* | Release-1.4.4-20050918 | Dimitri van Heesch | 2005-09-18 | 1 | -17/+9 |
| | |||||
* | Release-1.4.1 | Dimitri van Heesch | 2005-01-11 | 1 | -1/+1 |
| | |||||
* | Release-1.3.9.1-20041228 | Dimitri van Heesch | 2004-12-28 | 1 | -59/+91 |
| | |||||
* | Release-1.3.5-20040125 | Dimitri van Heesch | 2004-01-25 | 1 | -1/+1 |
| | |||||
* | Release-1.3.5-20040105 | Dimitri van Heesch | 2004-01-05 | 1 | -1/+1 |
| | |||||
* | Release-1.3.2-20030708 | Dimitri van Heesch | 2003-07-08 | 1 | -0/+7 |
| | |||||
* | Release-1.3-rc2-20030119 | Dimitri van Heesch | 2003-01-19 | 1 | -1/+1 |
| | |||||
* | Release-1.3-rc1-20021207 | Dimitri van Heesch | 2002-12-07 | 1 | -46/+40 |
| | |||||
* | Doxygen-1.2.13-20020122 | Dimitri van Heesch | 2002-01-22 | 1 | -1/+1 |
| |