aboutsummaryrefslogtreecommitdiff
path: root/include/env.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/env.hpp')
-rw-r--r--include/env.hpp14
1 files changed, 5 insertions, 9 deletions
diff --git a/include/env.hpp b/include/env.hpp
index e0a5b03..abaedd8 100644
--- a/include/env.hpp
+++ b/include/env.hpp
@@ -8,9 +8,9 @@
#if defined(_WIN32) || defined(_WIN64)
#if defined(_WIN64)
- #define OS_ENV_64BIT
+ #define SYS_ENV_64BIT
#else
- #define OS_ENV_32BIT
+ #define SYS_ENV_32BIT
#endif
#define OS_FAMILY OS_FAMILY_WINDOWS
#define OS_TYPE OS_TYPE_WINDOWS
@@ -40,13 +40,13 @@
#if defined(__GNUC__)
#if defined(__x86_64__) || defined(__pc64__)
- #define OS_ENV_64BIT
+ #define SYS_ENV_64BIT
#else
- #define OS_ENV_32BIT
+ #define SYS_ENV_32BIT
#endif
#endif
-#if !defined(OS_ENV_32BIT) && !defined(OS_ENV_64BIT)
+#if !defined(SYS_ENV_32BIT) && !defined(SYS_ENV_64BIT)
#error "System is not detected as either 32-bit or 64-bit"
#endif
@@ -57,7 +57,3 @@
#if !defined(OS_TYPE)
#error "System not supported. Only Windows and linux systems supported right now"
#endif
-
-#if !defined(DEBUG) && !defined(NDEBUG)
-#define DEBUG
-#endif