From 9fa5bc9c6c60f00102332bde0a34e1d655c220b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Wed, 2 Oct 2002 16:58:50 +0000 Subject: [PATCH] typo fixes [SVN r15653] --- 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 5f53a81..d85cd24 100644 --- a/doc/tuple_users_guide.html +++ b/doc/tuple_users_guide.html @@ -264,10 +264,10 @@ A tuple can be copy constructed from another tuple, provided that the element ty Analogously, a tuple can be assigned to another tuple, provided that the element types are element-wise assignable. For example: -
class A;
+
class A {};
 class B : public A {};
-struct C { C(); C(const B&); }
-struct D { operator C() const; }
+struct C { C(); C(const B&); };
+struct D { operator C() const; };
 tuple<char, B*, B, D> t;
   ...
 tuple<int, A*, C, C> a(t); // ok