From 90a88eee398aec6f48c261198dc5a8b77b91b768 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Sat, 8 Jul 2023 15:00:55 +0300 Subject: [PATCH] Switch if to if constexpr --- include/renderer_gl/surface_cache.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/renderer_gl/surface_cache.hpp b/include/renderer_gl/surface_cache.hpp index c5c98f79..1a7b87f8 100644 --- a/include/renderer_gl/surface_cache.hpp +++ b/include/renderer_gl/surface_cache.hpp @@ -56,7 +56,7 @@ public: // Adds a surface object to the cache and returns it SurfaceType& add(const SurfaceType& surface) { if (size >= capacity) { - if (evictOnOverflow) { // Do a ring buffer if evictOnOverflow is true + if constexpr (evictOnOverflow) { // Do a ring buffer if evictOnOverflow is true auto& e = buffer[evictionIndex]; evictionIndex = (evictionIndex + 1) % capacity;