From 497c7c10e992acf2750f7f62ca88874fb10effe5 Mon Sep 17 00:00:00 2001 From: "Vicente J. Botet Escriba" Date: Sat, 26 Oct 2013 15:49:29 +0000 Subject: [PATCH] TypeTraits/common_type fix typo. fix #8785. [SVN r86458] --- doc/examples.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples.qbk b/doc/examples.qbk index e747ae8..489b91e 100644 --- a/doc/examples.qbk +++ b/doc/examples.qbk @@ -221,7 +221,7 @@ and enum types to double: An improved `std::min` function could be written like this: template - typename __common_type::type min(T t, T u) + typename __common_type::type min(T t, U u) { return t < u ? t : u; }