From 28e34eb757a2416814d40b80940f883a7a4c2efc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Mon, 12 May 2003 14:51:42 +0000 Subject: [PATCH] fixed a typo [SVN r18386] --- doc/tuple_users_guide.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/tuple_users_guide.html b/doc/tuple_users_guide.html index ade902e..bdf7109 100644 --- a/doc/tuple_users_guide.html +++ b/doc/tuple_users_guide.html @@ -202,7 +202,7 @@ Array arguments to make_tuple functions are deduced to reference to
make_tuple("Donald", "Daisy");
 
-This creates an object of type tuple<const char (&)[5], const char (&)[6]> +This creates an object of type tuple<const char (&)[7], const char (&)[6]> (note that the type of a string literal is an array of const characters, not const char*). However, to get make_tuple to create a tuple with an element of a non-const array type one must use the ref wrapper. @@ -500,12 +500,12 @@ The idea for the tie mechanism came from an old usenet article by Ian McCulloch,

[1] -Järvi J.: Tuples and multiple return values in C++, TUCS Technical Report No 249, 1999 (http://www.tucs.fi/publications). +Järvi J.: Tuples and multiple return values in C++, TUCS Technical Report No 249, 1999 (http://www.tucs.fi/Publications).

[2] -Järvi J.: ML-Style Tuple Assignment in Standard C++ - Extending the Multiple Return Value Formalism, TUCS Technical Report No 267, 1999 (http://www.tucs.fi/publications). +Järvi J.: ML-Style Tuple Assignment in Standard C++ - Extending the Multiple Return Value Formalism, TUCS Technical Report No 267, 1999 (http://www.tucs.fi/Publications).