TypeTraits/common_type fix typo. fix #8785.

[SVN r86458]
This commit is contained in:
Vicente J. Botet Escriba
2013-10-26 15:49:29 +00:00
parent 6d0830f46f
commit 497c7c10e9

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;
}