GNOME Bugzilla – Bug 468953
pango-renderer.c: using function without prototype
Last modified: 2007-08-21 23:40:31 UTC
Please describe the problem: '_pango_shape_get_extents' is used without the prototype declaration in 'pango-renderer.c'. pango-impl-utils.h should be included. Steps to reproduce: 1. compile pango-renderer.c Actual results: Following message is displayed.(Visual C++) pango-renderer.c(496) : error C4013: '_pango_shape_get_extents' undefined; assuming extern returning int Expected results: Add '#include "pango-impl-utils.h"'. Does this happen every time? Revision 2401 or later Other information:
Thanks. 2007-08-21 Behdad Esfahbod <behdad@gnome.org> Bug 468953 – pango-renderer.c: using function without prototype * pango/pango-renderer.c: #include <pango-impl-utils.h>