From e6edd4eb913147f1b1080adb04d6827181aa94e2 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Thu, 9 Dec 2021 15:21:20 +0300 Subject: [PATCH] Minor formatting improvement. --- doc/operators.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/operators.qbk b/doc/operators.qbk index 21b8c92..feab269 100644 --- a/doc/operators.qbk +++ b/doc/operators.qbk @@ -1155,7 +1155,7 @@ used as `lhs` when adding `c`. This is more efficient than the original code, but not as efficient as a compiler using the NRVO. For most people, it is still preferable for compilers that don't implement the NRVO, but the `operator+` now has a different function signature. Also, -the number of objects created differs for `(a + b ) + c` and `a + ( b + c )`. +the number of objects created differs for `(a + b) + c` and `a + (b + c)`. Most probably, this won't be a problem for you, but if your code relies on the function signature or a strict symmetric behaviour, you should set