From 0aa9994e54a054ad69d42ac3e33bcc6bab48e6e9 Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Mon, 3 Apr 2017 12:15:05 -0700 Subject: [PATCH] whitespace for formatting --- CppCoreGuidelines.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index a7abf69..b08a29f 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -17608,7 +17608,9 @@ Instead, prefer to put the common code in a common helper function -- and make i You may need to cast away `const` when calling `const`-incorrect functions. Prefer to wrap such functions in inline `const`-correct wrappers to encapsulate the cast in one place. -##### See also: [ES.50, Don't cast away `const`](#Res-casts-const) for more discussion. +##### See also: + +[ES.50, Don't cast away `const`](#Res-casts-const) for more discussion. ##### Enforcement