0
votes
How to ignore gcc compiler pedantic errors in external library headers?
I don't know of any way to tell gcc to stop emitting those warnings. However you could hackishly remove third-party warnings with something like llvm-gcc (or just gcc) -pedantic 2>&1|grep -v " …
