Skip to content

Commit d9562f6

Browse files
committed
typo Int -> int
1 parent e8675ea commit d9562f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CppCoreGuidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ Code clarity and performance. You don't need to write error handlers for errors
560560
static_assert(sizeof(Int) >= 4); // do: compile-time check
561561

562562
int bits = 0; // don't: avoidable code
563-
for (Int i = 1; i; i <<= 1)
563+
for (int i = 1; i; i <<= 1)
564564
++bits;
565565
if (bits < 32)
566566
cerr << "Int too small\n";

0 commit comments

Comments
 (0)