From 4ad6d50f860f5e16159a137a1e3e594e2e646fa1 Mon Sep 17 00:00:00 2001 From: Piotr Padlewski Date: Sat, 26 Sep 2015 00:36:35 -0700 Subject: [PATCH] Update CppCoreGuidelines.md --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5c16297..2406311 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -713,7 +713,7 @@ If all we had was a typo so that we meant to use `n` as the bound, the code coul Date extract_date(const string& s); // extract date from string - user1(const string& date) // manipulate date + void user1(const string& date) // manipulate date { auto d = extract_date(date); // ...