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