diff --git a/include/fmt/ranges.h b/include/fmt/ranges.h index dcdbb899..681377b2 100644 --- a/include/fmt/ranges.h +++ b/include/fmt/ranges.h @@ -222,7 +222,7 @@ template void for_each(Tuple&& tup, F&& f) { } #if FMT_MSC_VER -// older MSVC doesn't get the reference type correctly for arrays +// Older MSVC doesn't get the reference type correctly for arrays. template struct range_reference_type_impl { using type = decltype(*detail::range_begin(std::declval())); }; @@ -240,7 +240,7 @@ using range_reference_type = #endif // We don't use the Range's value_type for anything, but we do need the Range's -// reference type, with cv-ref stripped +// reference type, with cv-ref stripped. template using uncvref_type = remove_cvref_t>;