Closed rrsettgast closed 9 months ago
Per the clang documentation, it understands both
#pragma GCC
and#pragma clang
as synonymous:https://clang.llvm.org/docs/UsersManual.html#controlling-diagnostics-via-pragmas
So I'm not sure this is necessary, was there a warning/error motivating this?
Ah. It is because clang
didn't recognize the warning flag Walloc-size-larger-than=
and I think Wstringop-overflow=
as well.
Per the clang documentation, it understands both
#pragma GCC
and#pragma clang
as synonymous:https://clang.llvm.org/docs/UsersManual.html#controlling-diagnostics-via-pragmas
So I'm not sure this is necessary, was there a warning/error motivating this?