ORIGINAL
|
Compile-time functions for platform detection. More...
Functions | |
consteval bool | original::ON_WINDOWS () |
Checks if compiling for Windows platform. | |
consteval bool | original::ON_WIN32 () |
Checks if compiling for 32-bit Windows. | |
consteval bool | original::ON_WIN64 () |
Checks if compiling for 64-bit Windows. | |
consteval bool | original::ON_LINUX () |
Checks if compiling for Linux platform. | |
consteval bool | original::ON_MACOS () |
Checks if compiling for macOS platform. | |
consteval bool | original::ON_UNIX () |
Checks if compiling for Unix-like platform (excluding Linux/macOS) | |
consteval bool | original::ON_UNKNOWN_PLATFORM () |
Checks if compiling for unknown platform. | |
Compile-time functions for platform detection.
consteval bool original::ON_LINUX | ( | ) |
Checks if compiling for Linux platform.
consteval bool original::ON_MACOS | ( | ) |
Checks if compiling for macOS platform.
consteval bool original::ON_UNIX | ( | ) |
Checks if compiling for Unix-like platform (excluding Linux/macOS)
consteval bool original::ON_UNKNOWN_PLATFORM | ( | ) |
Checks if compiling for unknown platform.
consteval bool original::ON_WIN32 | ( | ) |
Checks if compiling for 32-bit Windows.
consteval bool original::ON_WIN64 | ( | ) |
Checks if compiling for 64-bit Windows.
consteval bool original::ON_WINDOWS | ( | ) |
Checks if compiling for Windows platform.