mirror of
https://github.com/microsoft/GSL.git
synced 2025-04-03 09:28:35 -04:00
Add suppression
This commit is contained in:
parent
d2b2c98185
commit
48d105af23
@ -63,6 +63,12 @@
|
|||||||
#pragma GCC diagnostic ignored "-Wsign-conversion"
|
#pragma GCC diagnostic ignored "-Wsign-conversion"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Turn off clang unsafe buffer warnings as all accessed are guarded by runtime checks
|
||||||
|
#if defined(__clang__)
|
||||||
|
#pragma clang diagnostic push
|
||||||
|
#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
|
||||||
|
#endif // defined(__clang__)
|
||||||
|
|
||||||
namespace gsl
|
namespace gsl
|
||||||
{
|
{
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user