Ignore nullability-completeness warnings in VMA

These cause a lot of warnings when compiling with clang.
And the example VmaUsage.h appears to disable them
This commit is contained in:
Scott Mansell 2023-01-30 03:11:51 +13:00
parent 2eda76cffc
commit 6ad182edd9
1 changed files with 1 additions and 0 deletions

View File

@ -48,6 +48,7 @@
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-variable"
#pragma clang diagnostic ignored "-Wnullability-completeness"
#endif // #ifdef __clang__
#ifdef __GNUC__