TypeTraits/common_type fix typo.

[SVN r86457]
This commit is contained in:
Vicente J. Botet Escriba
2013-10-26 15:30:31 +00:00
parent d5c5988d92
commit 31ceaf1b02

View File

@ -221,7 +221,7 @@ and enum types to double:
An improved `std::min` function could be written like this:
template <class T, class U>
typename __common_type<T, U>::type min(T t, T u)
typename __common_type<T, U>::type min(T t, U u)
{
return t < u ? t : u;
}