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