From b17948aba2f40ced9da6fc074064a14424eb20a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Tue, 17 May 2022 11:29:37 -0700 Subject: [PATCH] C++14 is minimum. --- include/bx/macros.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/bx/macros.h b/include/bx/macros.h index 162383f..5bf5e5c 100644 --- a/include/bx/macros.h +++ b/include/bx/macros.h @@ -109,11 +109,7 @@ /// The return value of the function is solely a function of the arguments. /// -#if __cplusplus < 201402 -# define BX_CONSTEXPR_FUNC BX_CONST_FUNC -#else -# define BX_CONSTEXPR_FUNC constexpr BX_CONST_FUNC -#endif // __cplusplus < 201402 +#define BX_CONSTEXPR_FUNC constexpr BX_CONST_FUNC /// #define BX_STATIC_ASSERT(_condition, ...) static_assert(_condition, "" __VA_ARGS__)