summaryrefslogtreecommitdiff
path: root/zap/include/zap/sys.d/lang.h
diff options
context:
space:
mode:
Diffstat (limited to 'zap/include/zap/sys.d/lang.h')
-rw-r--r--zap/include/zap/sys.d/lang.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/zap/include/zap/sys.d/lang.h b/zap/include/zap/sys.d/lang.h
deleted file mode 100644
index c7157e5..0000000
--- a/zap/include/zap/sys.d/lang.h
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- Copyright 2022-2023 Gabriel Jensen.
- This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
- If a copy of the MPL was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0>.
-*/
-
-#ifdef __cplusplus
-
-#define zap_lang_cxx89 (0x1)
-
-#if __cplusplus >= 199711
-#define zap_lang_cxx99 (0x1)
-
-#if __cplusplus >= 201103
-#define zap_lang_cxx11 (0x1)
-
-#if __cplusplus >= 201402
-#define zap_lang_cxx14 (0x1)
-
-#if __cplusplus >= 201703
-#define zap_lang_cxx17 (0x1)
-
-#if __cplusplus >= 202002
-#define zap_lang_cxx20 (0x1)
-
-#if __cplusplus > 202002
-#define zap_lang_cxx23 (0x1)
-#endif
-#endif
-#endif
-#endif
-#endif
-#endif
-
-#else
-
-#define zap_lang_c90 (0x1)
-
-#if __STDC_VERSION__ >= 199409
-#define zap_lang_c95 (0x1)
-
-#if zap_lang_c99
-#define zap_lang_c99 (0x1)
-
-#if __STDC_VERSION__ >= 201112
-#define zap_lang_c11 (0x1)
-
-#if __STDC_VERSION__ >= 201710
-#define zap_lang_c17 (0x1)
-
-#if zap_lang_c23
-#define zap_lang_c23 (0x1)
-
-#endif
-#endif
-#endif
-#endif
-#endif
-
-#endif