Documentation generator doesn't support C99 comments.
All checks were successful
Compile Cytoplasm / Compile Cytoplasm (aarch64, alpine) (push) Successful in 9s

This commit is contained in:
Jordan Bancino 2024-09-21 16:31:31 -04:00
parent 6827d4fc39
commit 4f316ff7b3
Signed by: jordan
SSH key fingerprint: SHA256:KZSFf6aBlTjUn5fy3MH8uzqClGOnUaijIDirZKJsEsY

View file

@ -44,16 +44,12 @@
#include <TargetConditionals.h>
#if TARGET_IPHONE_SIMULATOR
// iOS, tvOS, or watchOS Simulator
#define PLATFORM_IPHONE
#elif TARGET_OS_MACCATALYST
// Mac's Catalyst (ports iOS API into Mac, like UIKit).
#define PLATFORM_CATALYST
#elif TARGET_OS_IPHONE
// iOS, tvOS, or watchOS device
#define PLATFORM_IPHONE
#elif TARGET_OS_MAC
// Other kinds of Apple platforms
#define PLATFORM_MAC
#else
# error "Unknown Apple platform"
@ -62,7 +58,7 @@
#define PLATFORM_ANDROID
#elif __linux__
#define PLATFORM_LINUX
#elif __unix__ // all unices not caught above
#elif __unix__
#define PLATFORM_UNIX
#elif defined(_POSIX_VERSION)
#define PLATFORM_POSIX
@ -70,4 +66,4 @@
# error "Unknown compiler"
#endif
#endif // CYTOPLASM_PLATFORM_H
#endif /* CYTOPLASM_PLATFORM_H */