From b5adbd2564b01a1b0a1087925af024983f5f0a45 Mon Sep 17 00:00:00 2001 From: bgloyer <36457894+bgloyer@users.noreply.github.com> Date: Thu, 17 Aug 2023 19:04:37 -0700 Subject: [PATCH] F_3 void auto (#2125) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 2aed6e0..192d876 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2500,7 +2500,7 @@ If there was a need, we could further templatize `read()` and `print()` on the d // check for errors }; - auto print(auto& output, const auto& value) + void print(auto& output, const auto& value) { output << value << "\n"; }