From 1c0e2b7d1184be2fb8645bb09e4c77b01fa3b886 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Tue, 23 Aug 2016 10:36:43 +0200 Subject: [PATCH] fix invalid code --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index d6fa3b4..bd1419a 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -16138,7 +16138,7 @@ This enables the compiler to do an early consistency check. // foo.h: void foo(int); - int bar(long double); + int bar(long); int foobar(int); // foo.cpp: @@ -16152,7 +16152,7 @@ The errors will not be caught until link time for a program calling `bar` or `fo // foo.h: void foo(int); - int bar(long double); + int bar(long); int foobar(int); // foo.cpp: