Skip to content

Commit 1d47572

Browse files
committed
Fix comment
1 parent 90b80f0 commit 1d47572

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/fmt/base.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,8 @@ template <typename T> using decay_t = typename std::decay<T>::type;
327327
using nullptr_t = decltype(nullptr);
328328

329329
#if (FMT_GCC_VERSION && FMT_GCC_VERSION < 500) || FMT_MSC_VERSION
330-
// A workaround for gcc 4.9 and MSVC 2017 to make void_t work in a SFINAE context.
330+
// A workaround for gcc 4.9 and MSVC v141 to make void_t work in a SFINAE
331+
// context.
331332
template <typename...> struct void_t_impl {
332333
using type = void;
333334
};

0 commit comments

Comments
 (0)