Minor comment tweak

This commit is contained in:
Victor Zverovich
2025-04-19 10:18:01 -07:00
parent 969d4aef60
commit 0a917ee2f5

View File

@ -327,8 +327,7 @@ template <typename T> using decay_t = typename std::decay<T>::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 <typename...> struct void_t_impl {
using type = void;
};