We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57b3a1e commit c2a3472Copy full SHA for c2a3472
1 file changed
external/apache2/mDNSResponder/dist/mDNSShared/dns_sd.h
@@ -165,7 +165,7 @@ typedef INT32 int32_t;
165
#define __has_feature(X) 0
166
#endif
167
168
-#if __has_feature(objc_fixed_enum) || __has_extension(cxx_fixed_enum) || __has_extension(cxx_strong_enums)
+#if !defined(__lint__) && (__has_feature(objc_fixed_enum) || __has_extension(cxx_fixed_enum) || __has_extension(cxx_strong_enums))
169
#define DNS_SERVICE_FLAGS_ENUM enum : uint32_t
170
#else
171
#define DNS_SERVICE_FLAGS_ENUM enum
@@ -176,7 +176,7 @@ typedef INT32 int32_t;
176
177
178
#ifndef DNS_SD_NULLABLE
179
- #if __has_feature(nullability)
+ #if __has_feature(nullability) && !defined(__lint__)
180
#define DNS_SD_NULLABLE _Nullable
181
#define DNS_SD_NONNULL _Nonnull
182
0 commit comments