From 0a917ee2f5c77fc5c24f45fe1d91dc33391a3bb3 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 19 Apr 2025 10:18:01 -0700 Subject: [PATCH] Minor comment tweak --- include/fmt/base.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/fmt/base.h b/include/fmt/base.h index b99b9ff8..a862571b 100644 --- a/include/fmt/base.h +++ b/include/fmt/base.h @@ -327,8 +327,7 @@ template using decay_t = typename std::decay::type; using nullptr_t = decltype(nullptr); #if (FMT_GCC_VERSION && FMT_GCC_VERSION < 500) || FMT_MSC_VERSION -// A workaround for gcc 4.9 and MSVC v141 to make void_t work in a SFINAE -// context. +// A workaround for gcc 4.9 & MSVC v141 to make void_t work in a SFINAE context. template struct void_t_impl { using type = void; };