Use typename on templates for consistency. (#6038)

They're essentially equivalent, we just typically write `typename`; even
in the examples here, most have other templates in the same file that
use `typename`.
This commit is contained in:
Jon Ross-Perkins
2025-09-10 13:44:36 +00:00
committed by GitHub
parent 0518fdebbc
commit b74fdf52de
6 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
// Workaround for std::pair comparison deficiency in libc++ 16.
#if defined(_LIBCPP_VERSION) && _LIBCPP_VERSION < 170000
namespace std {
template <class T, class U, class V, class W>
template <typename T, typename U, typename V, typename W>
requires(convertible_to<V, T> && convertible_to<W, U>)
inline auto operator==(
pair<std::reference_wrapper<T>, std::reference_wrapper<U>> lhs,