Comment 1 for bug 1126077

Revision history for this message
Raghavendra D Prabhu (raghavendra-prabhu) wrote :

I would also add (if possible) another ifdef around following pragma:

/home/raghavendra/repo/percona-server/5.5/Percona-Server/sql/item_xmlfunc.h +25:9: warning: unknown pragma ignored [-Wunknown-pragmas]
#pragma interface /* gcc class implementation */

This is how it looks currently:

#ifdef __GNUC__
#pragma interface /* gcc class implementation */
#endif

it can be made

#ifdef __GNUC__ && !defined __clang__
#pragma interface /* gcc class implementation */
#endif