GNOME Bugzilla – Bug 602518
Doesn't support "long int" return type
Last modified: 2009-11-25 08:49:43 UTC
I have changed the return type of a function from `int` to `long int`, and it no longer appears in the docs, and is now in the undeclared.txt file. If I set the return type to `long` (without `int`), the function appears again. Same for `long int*`. Seen both using GtkDoc 1.11 from Debian and 1.12 from Git (at latest revision as of now).
I added a test case for it. Another parser bug.
commit 2c5cdf51ac727e189d9a7cc909db8b1f4551f39d Author: Stefan Kost <ensonic@users.sf.net> Date: Wed Nov 25 10:47:13 2009 +0200 parsing: support return value types like "long int". Fixes #602518 Fix the regexps to handle such constructs. Also add a few tests that cover the reported case and similar ones.