diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-26 00:40:51 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-26 00:42:44 +0100 |
commit | cf7db48c261ee9c896c813a38ff8c59da5b8fe07 (patch) | |
tree | 41d827be5db5f3322d745215fe38a9c395a52fa3 /asl/config.hpp | |
parent | 79aaec3d7d12bc1a0483f19eadeda325a2d65920 (diff) |
Fix line endings
Diffstat (limited to 'asl/config.hpp')
-rw-r--r-- | asl/config.hpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/asl/config.hpp b/asl/config.hpp index 1e28252..e182569 100644 --- a/asl/config.hpp +++ b/asl/config.hpp @@ -1,17 +1,17 @@ -#pragma once
-
-#if defined(_WIN32)
- #define ASL_OS_WINDOWS 1
-#elif defined(__linux__)
- #define ASL_OS_LINUX 1
-#else
- #error Unknown OS
-#endif
-
-#if defined(__clang__) && defined(_MSC_VER)
- #define ASL_COMPILER_CLANG_CL 1
-#elif defined(__clang__)
- #define ASL_COMPILER_CLANG 1
-#else
- #error Unknown compiler
-#endif
+#pragma once + +#if defined(_WIN32) + #define ASL_OS_WINDOWS 1 +#elif defined(__linux__) + #define ASL_OS_LINUX 1 +#else + #error Unknown OS +#endif + +#if defined(__clang__) && defined(_MSC_VER) + #define ASL_COMPILER_CLANG_CL 1 +#elif defined(__clang__) + #define ASL_COMPILER_CLANG 1 +#else + #error Unknown compiler +#endif |