After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 634415 - Specific char array declaration ends the doxygen processing of a file.
Specific char array declaration ends the doxygen processing of a file.
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.7.2
Other Windows
: Normal major
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2010-11-09 13:28 UTC by xhpohanka
Modified: 2011-03-28 14:19 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Project causing problems (23.81 KB, application/zip)
2011-03-04 07:18 UTC, xhpohanka
Details

Description xhpohanka 2010-11-09 13:28:05 UTC
If I have this declaration in my .c file

const char fsktab [] = {' ', '"'};

nothing under it won't be processed.
Comment 1 Dimitri van Heesch 2010-11-10 21:49:03 UTC
I failed to reproduce this with the following example (and a default config file):

--- test.c ----------------------------
const char fsktab [] = {' ', '"'};

/** some test */
class T
{
};
---------------------------------------

Can you please attach a self-contained example (source+config file in a tar or zip) that allows me to reproduce the problem?
Comment 2 xhpohanka 2010-11-11 20:43:39 UTC
Here is the full array which causes problems, I can send whole project later.

const char fsktab [256] = {
    '\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0',
    '\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0',
    ' ','!','\"','#','$','%','&','\'','(',')','*','+',',','-','.','/',
    '0','1','2','3','4','5','6','7','8','9',':',';','<','=','>','?',
    '@','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O',
    'P','Q','R','S','T','U','V','W','X','Y','Z','[','\\',']','^','_',
    '`','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o',
    'p','q','r','s','t','u','v','w','x','y','z','{','|','}','~','\0'
} ;
Comment 3 Tobias Mueller 2011-03-03 20:07:27 UTC
Could you please upload the full project and reopen? Thanks in advance.
Comment 4 xhpohanka 2011-03-04 07:18:42 UTC
Created attachment 182442 [details]
Project causing problems
Comment 5 xhpohanka 2011-03-04 07:19:55 UTC
Presence of '"' string in const char fsktab [256] array causes doxygen to stop processing.
Comment 6 Dimitri van Heesch 2011-03-27 12:33:56 UTC
Confirmed. Should be fixed in the next release.
Comment 7 Dimitri van Heesch 2011-03-28 14:19:10 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.7.4. Please verify if this is indeed the case. Reopen the
bug if you think it is not fixed and please include any additional information
that you think can be relevant.