From 6867d13363cf95937596c72831868c73e996019e Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Thu, 11 Aug 2016 19:07:51 +0200 Subject: [PATCH] type error --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index fcc9ce8..cf65aa6 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8526,7 +8526,7 @@ The more traditional and lower-level near-equivalent is longer, messier, harder is.read(s, maxstring); res[elemcount++] = s; } - nread = elemcount; + nread = &elemcount; return res; }