I would like to restrict certain warnings to project includes, so system includes are not checked. So:
/* I want no warnings from this include */ #include <myheader.h> /* I want warnings from this include */ #include "myotherheader.h" Is this possible with llvm and/or gcc?
Regards, Jochen