From 31ceaf1b0201cb351b726a9baff41ea47242a805 Mon Sep 17 00:00:00 2001 From: "Vicente J. Botet Escriba" Date: Sat, 26 Oct 2013 15:30:31 +0000 Subject: [PATCH] TypeTraits/common_type fix typo. [SVN r86457] --- 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; }