From 4f316ff7b3a955b831ca4aefb8679ddf3396a7d0 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Sat, 21 Sep 2024 16:31:31 -0400 Subject: [PATCH] Documentation generator doesn't support C99 comments. --- include/Cytoplasm/Platform.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/include/Cytoplasm/Platform.h b/include/Cytoplasm/Platform.h index e490af4..c18e7d7 100644 --- a/include/Cytoplasm/Platform.h +++ b/include/Cytoplasm/Platform.h @@ -44,16 +44,12 @@ #include #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 */