lint(format): change format rules a bit

This commit is contained in:
2025-06-10 23:44:40 +02:00
parent 22c3f7c896
commit bb1ca09fd8
7 changed files with 20 additions and 27 deletions

View File

@@ -1,12 +1,12 @@
// Do we just replace the compiler with clang??
#if defined(__clang__)
#define NULLABLE _Nullable
#define NULLABLE _Nullable
#else
#define NULLABLE
#define NULLABLE
#endif
#if defined(__clang__)
#define NNULLABLE _Nonnull
#define NNULLABLE _Nonnull
#else
#define NNULLABLE
#define NNULLABLE
#endif