From d51a304e0a1a67730fc937c8740d739edb7d39a9 Mon Sep 17 00:00:00 2001 From: Cleroth Date: Sun, 6 Aug 2017 21:36:48 +0200 Subject: [PATCH] Update CppCoreGuidelines.md --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index dfa89b4..d611590 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10687,7 +10687,7 @@ Requires messy cast-and-macro-laden code to get working right. void error(int severity) { - std::cerr << '\n' << std::flush; + std::cerr << '\n'; std::exit(severity); }