diff options
Diffstat (limited to 'include/openvic-dataloader/detail/Constexpr.hpp')
-rw-r--r-- | include/openvic-dataloader/detail/Constexpr.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/openvic-dataloader/detail/Constexpr.hpp b/include/openvic-dataloader/detail/Constexpr.hpp new file mode 100644 index 0000000..49479c5 --- /dev/null +++ b/include/openvic-dataloader/detail/Constexpr.hpp @@ -0,0 +1,15 @@ +#pragma once + +// THANK YOU APPLE FOR YOUR UTTER DISREGARD FOR C++20 + +#if __cpp_lib_optional >= 202106L +#define OVDL_OPTIONAL_CONSTEXPR constexpr +#else +#define OVDL_OPTIONAL_CONSTEXPR inline +#endif + +#if __cpp_lib_constexpr_vector >= 201907L +#define OVDL_VECTOR_CONSTEXPR constexpr +#else +#define OVDL_VECTOR_CONSTEXPR inline +#endif
\ No newline at end of file |