mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
typo Int -> int
This commit is contained in:
@@ -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
|
static_assert(sizeof(Int) >= 4); // do: compile-time check
|
||||||
|
|
||||||
int bits = 0; // don't: avoidable code
|
int bits = 0; // don't: avoidable code
|
||||||
for (Int i = 1; i; i <<= 1)
|
for (int i = 1; i; i <<= 1)
|
||||||
++bits;
|
++bits;
|
||||||
if (bits < 32)
|
if (bits < 32)
|
||||||
cerr << "Int too small\n";
|
cerr << "Int too small\n";
|
||||||
|
|||||||
Reference in New Issue
Block a user