Remove C++ pseudo support

This commit is contained in:
2025-05-05 02:48:35 +01:00
parent 0d4aa7a9c2
commit 98a802e3eb
30 changed files with 20 additions and 251 deletions

View File

@@ -88,7 +88,7 @@ internal u64 split_mix_64(SplitMix64State *state) {
return result ^ (result >> 31);
}
#if defined(WAPP_PLATFORM_CPP) || (defined(WAPP_PLATFORM_C) && WAPP_PLATFORM_C_VERSION >= WAPP_PLATFORM_C11_VERSION)
#if defined(WAPP_PLATFORM_C) && WAPP_PLATFORM_C_VERSION >= WAPP_PLATFORM_C11_VERSION
#ifdef WAPP_PLATFORM_POSIX
internal void seed_os_generator(void) {
struct timespec ts = {0};
@@ -131,4 +131,4 @@ internal u64 generate_random_number(void) {
return (((u64)n1) << 32 | (u64)n2);
}
#endif // !WAPP_PLATFORM_CPP
#endif // !WAPP_PLATFORM_C