From 0ff543fe19aacf1c557488433593caa1432715f5 Mon Sep 17 00:00:00 2001 From: hsutter Date: Mon, 17 Apr 2017 11:51:20 -0700 Subject: [PATCH] Addresses #568 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8ceaaf5..0cf641a 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2819,7 +2819,7 @@ The argument against is prevents (very frequent) use of move semantics. ##### Reason A return value is self-documenting as an "output-only" value. -Note that C++ does have multiple return values, by convention of using a `tuple`, +Note that C++ does have multiple return values, by convention of using a `tuple` (including `pair`), possibly with the extra convenience of `tie` at the call site. ##### Example