From bb7a80b1abb68a1caf12714096e8416fb520a532 Mon Sep 17 00:00:00 2001 From: vitaut Date: Mon, 25 Jan 2016 06:46:43 -0800 Subject: [PATCH] Correct comment --- format.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/format.cc b/format.cc index b85d7a76..fbf932fc 100644 --- a/format.cc +++ b/format.cc @@ -289,8 +289,8 @@ struct is_same { }; // An argument visitor that converts an integer argument to T for printf, -// if T is an integral type. If T is not integral, the argument is converted -// to corresponding signed or unsigned type depending on the type specifier: +// if T is an integral type. If T is void, the argument is converted to +// corresponding signed or unsigned type depending on the type specifier: // 'd' and 'i' - signed, other - unsigned) template class ArgConverter : public fmt::internal::ArgVisitor, void> {