From f370b1fa9e37ff7d74fb7497d6d62f480ad078e9 Mon Sep 17 00:00:00 2001 From: Bjarne Stroustrup Date: Sun, 8 Dec 2019 13:31:09 -0500 Subject: [PATCH] Update CppCoreGuidelines.md Closed #1101 --- CppCoreGuidelines.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8908ada..5228c7e 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2821,6 +2821,8 @@ Advanced parameter passing: Use the advanced techniques only after demonstrating need, and document that need in a comment. +For passing sequences of characters see [String](#SS-string). + ### F.16: For "in" parameters, pass cheaply-copied types by value and others by reference to `const` ##### Reason