Format indent to 4 spaces

This commit is contained in:
CanftIn 2020-04-10 12:39:42 +08:00 committed by GitHub
parent 8254a9edfd
commit eff5cd2eeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2293,13 +2293,13 @@ template <
typename U = typename vector<T>::iterator // 1 typename U = typename vector<T>::iterator // 1
> >
typename vector<T>::value_type // 1 typename vector<T>::value_type // 1
foo( foo(
T*, // 1 T*, // 1
T&, // 1 T&, // 1
typename T::internal_type, // 1 typename T::internal_type, // 1
typename add_reference<T>::type, // 1 typename add_reference<T>::type, // 1
int // 这里都不需要 substitution int // 这里都不需要 substitution
) )
{ {
// 整个实现部分,都没有 substitution。这个很关键。 // 整个实现部分,都没有 substitution。这个很关键。
} }