summaryrefslogtreecommitdiffstats
path: root/src/message.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fixed segmentation fault in do_warnMatthew Hatch2019-05-081-1/+5
| | | | Copied va_list to avoid reuse causing crash
* Truncated warning messagealbert-github2019-05-061-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 Heesch2016-01-171-18/+18
| | | | improve performance
* Reverted change that caused doxygen to return error code 2 when it produced ↵Dimitri van Heesch2015-12-191-5/+6
| | | | a warning
* Add WARN_AS_ERROR option to stop execution at first warning (equivalent of ↵Gautier Pelloux-Prayer2015-12-161-10/+24
| | | | compilers' -Werror option)
* Bug 333106 - $line paramalbert-github2015-07-281-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 Heesch2015-04-061-4/+4
|
* Merge pull request #303 from albert-github/feature/bug_idl_errorDimitri van Heesch2015-03-051-1/+9
|\ | | | | Better error message in case of IDL inconsistency
| * Better error message in case of IDL inconsistencyalbert-github2015-03-041-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 yearDimitri van Heesch2015-02-261-1/+1
|/
* Fixed several Coverity warningsDimitri van Heesch2014-11-151-4/+5
|
* Messages truncated in warnings filealbert-github2014-07-301-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 copyrightDimitri van Heesch2014-02-111-1/+1
|
* Fixed potential crash caused by overloading the variadic warn functionDimitri van Heesch2014-01-181-1/+1
|
* More work on the template and context mechanismsDimitri van Heesch2013-12-291-2/+7
|
* Fixed constness warningDimitri van Heesch2013-11-171-7/+4
|
* Debug output for lexical analyzerAlbert2013-11-131-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 Heesch2013-06-041-2/+2
| | | | warnings
* Release-1.8.3.1-20130512Dimitri van Heesch2013-05-121-7/+23
|
* Release-1.8.3.1Dimitri van Heesch2013-01-201-1/+1
|
* Release-1.8.2-20121118Dimitri van Heesch2012-11-181-0/+1
|
* Release-1.7.6.1-20120220Dimitri van Heesch2012-02-201-1/+1
|
* Release-1.7.4Dimitri van Heesch2011-03-281-10/+18
|
* Release-1.7.3-20110123Dimitri van Heesch2011-01-231-1/+1
|
* Release-1.7.1-20100920Dimitri van Heesch2010-09-201-2/+3
|
* Release-1.7.0Dimitri van Heesch2010-06-151-1/+2
|
* Release-1.6.3-20100603Dimitri van Heesch2010-06-031-10/+0
|
* Release-1.6.2-20100124Dimitri van Heesch2010-01-241-1/+1
|
* Release-1.5.9-20090814Dimitri van Heesch2009-08-141-1/+1
|
* Release-1.5.4-20080101Dimitri van Heesch2008-01-171-2/+2
|
* Release-1.5.4Dimitri van Heesch2008-01-161-1/+1
|
* Release-1.5.1-20070219Dimitri van Heesch2007-02-191-1/+1
|
* Release-1.5.1-20070107Dimitri van Heesch2007-01-071-1/+1
|
* Release-1.5.1-20061202Dimitri van Heesch2006-12-021-1/+1
|
* Release-1.4.6-20060507Dimitri van Heesch2006-05-071-1/+1
|
* Release-1.4.4-20050918Dimitri van Heesch2005-09-181-17/+9
|
* Release-1.4.1Dimitri van Heesch2005-01-111-1/+1
|
* Release-1.3.9.1-20041228Dimitri van Heesch2004-12-281-59/+91
|
* Release-1.3.5-20040125Dimitri van Heesch2004-01-251-1/+1
|
* Release-1.3.5-20040105Dimitri van Heesch2004-01-051-1/+1
|
* Release-1.3.2-20030708Dimitri van Heesch2003-07-081-0/+7
|
* Release-1.3-rc2-20030119Dimitri van Heesch2003-01-191-1/+1
|
* Release-1.3-rc1-20021207Dimitri van Heesch2002-12-071-46/+40
|
* Doxygen-1.2.13-20020122Dimitri van Heesch2002-01-221-1/+1
|
* Release-1.2.6-20010422Dimitri van Heesch2001-04-221-0/+4
|
* Doxygen-1.2.6-20010408Dimitri van Heesch2001-04-081-10/+10
|
* Release-1.2.6-20010401Dimitri van Heesch2001-04-011-11/+11
|
* Release-1.2.4-20010107Dimitri van Heesch2001-01-071-1/+1
|
* Release-1.2.2-20001015Dimitri van Heesch2000-10-151-14/+21
|
* Release-1.1.3-20000528Dimitri van Heesch2000-05-281-6/+17
|