pango_font_map_changed()



void
pango_font_map_changed (PangoFontMap *fontmap)
{
  g_return_if_fail (PANGO_IS_FONT_MAP (fontmap));

  if (PANGO_FONT_MAP_GET_CLASS (fontmap)->changed)
    return PANGO_FONT_MAP_GET_CLASS (fontmap)->changed (fontmap);
}


Microsoft's Visual Studio gives me the following compiler warning when I build the above function from pango-fontmap.c:-

pango-fontmap.c(338) : warning C4098: 'pango_font_map_changed' : 'void' function returning a value

There are too many macros in the way for me assess whether or not this is a genuine error but it looks like it might be. Where's the right place to report it?

John


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]