diff --git a/doc/tuple_users_guide.html b/doc/tuple_users_guide.html index 21d396a..992b77a 100644 --- a/doc/tuple_users_guide.html +++ b/doc/tuple_users_guide.html @@ -416,8 +416,9 @@ parseable.
class hand_made_tuple {
A a; B b; C c;
@@ -439,6 +440,8 @@ and this code:
t.get<0>(); t.get<1>(); t.get<2>();
+Note, that there are widely used compilers (e.g. bcc 5.5.1) which fail to optimize this kind of tuple usage. +
Depending on the optimizing ability of the compiler, the tier mechanism may have a small performance penalty compared to using non-const reference parameters as a mechanism for returning multiple values from a function.