From 860728a6949cb06191c3f3fee8df091768e7f154 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 21 Aug 2017 21:22:39 +0300 Subject: Add support for if constexpr. --- src/localconsts.h | 6 ++++++ src/resources/sdlimagehelper.cpp | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/localconsts.h b/src/localconsts.h index 63865afc8..dc7723ae3 100644 --- a/src/localconsts.h +++ b/src/localconsts.h @@ -300,6 +300,12 @@ #endif // ENABLE_CHECKS +#if __cpp_if_constexpr >= 201606 +#define ifconstexpr if constexpr +#else // __cpp_if_constexpr >= 201606 +#define ifconstexpr if +#endif // __cpp_if_constexpr >= 201606 + #ifdef USE_SDL2 PRAGMA45(GCC diagnostic push) PRAGMA45(GCC diagnostic ignored "-Wswitch-default") diff --git a/src/resources/sdlimagehelper.cpp b/src/resources/sdlimagehelper.cpp index 5459062f9..21bc75b0b 100644 --- a/src/resources/sdlimagehelper.cpp +++ b/src/resources/sdlimagehelper.cpp @@ -266,7 +266,7 @@ Image *SDLImageHelper::_SDLload(SDL_Surface *tmpImage) } else { - if (SDL_ALPHA_OPAQUE != 255) + ifconstexpr (SDL_ALPHA_OPAQUE != 255) { hasAlpha = true; memset(alphaChannel, SDL_ALPHA_OPAQUE, sz); @@ -275,7 +275,7 @@ Image *SDLImageHelper::_SDLload(SDL_Surface *tmpImage) } else { - if (SDL_ALPHA_OPAQUE != 255) + ifconstexpr (SDL_ALPHA_OPAQUE != 255) { hasAlpha = true; memset(alphaChannel, SDL_ALPHA_OPAQUE, sz); -- cgit v1.2.3-60-g2f50