From a5deb96bf51ec41f456e84a6f1083520b08d7275 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 10 Sep 2024 20:37:50 -0700 Subject: [PATCH] Update gcc version --- include/fmt/base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/base.h b/include/fmt/base.h index d6cfbd37..75df1746 100644 --- a/include/fmt/base.h +++ b/include/fmt/base.h @@ -314,7 +314,7 @@ using underlying_t = typename std::underlying_type::type; template using decay_t = typename std::decay::type; #if FMT_GCC_VERSION && FMT_GCC_VERSION < 500 -// A workaround for gcc 4.8 to make void_t work in a SFINAE context. +// A workaround for gcc 4.9 to make void_t work in a SFINAE context. template struct void_t_impl { using type = void; };