From d9562f683d4cbefd5c8b5ab356ab3de6bcc35baf Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 17 Apr 2016 11:23:48 +0200 Subject: [PATCH] typo Int -> int --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 7b5fb91..f2dfa0b 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -560,7 +560,7 @@ Code clarity and performance. You don't need to write error handlers for errors static_assert(sizeof(Int) >= 4); // do: compile-time check int bits = 0; // don't: avoidable code - for (Int i = 1; i; i <<= 1) + for (int i = 1; i; i <<= 1) ++bits; if (bits < 32) cerr << "Int too small\n";