GNOME Bugzilla – Bug 634415
Specific char array declaration ends the doxygen processing of a file.
Last modified: 2011-03-28 14:19:10 UTC
If I have this declaration in my .c file const char fsktab [] = {' ', '"'}; nothing under it won't be processed.
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?
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' } ;
Could you please upload the full project and reopen? Thanks in advance.
Created attachment 182442 [details] Project causing problems
Presence of '"' string in const char fsktab [256] array causes doxygen to stop processing.
Confirmed. Should be fixed in the next release.
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.