I want to have a macro that's invoked like this:
GCC_WARNING(-Wuninitialized)
which expands to code like this:
_Pragma("GCC diagnostic ignored \"-Wuninitialized\"")
I'm not having luck getting this to work, as the usual tricks of preprocessor joins and stringifying don't seem to apply or I don't know how to apply them here.