mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
@@ -8482,7 +8482,7 @@ Incrementing a value beyond a maximum value can lead to memory corruption and un
|
|||||||
|
|
||||||
int area(int h, int w) { return h*w; }
|
int area(int h, int w) { return h*w; }
|
||||||
|
|
||||||
auto a = area(10'000'000*100'000'000); // bad
|
auto a = area(10'000'000, 100'000'000); // bad
|
||||||
|
|
||||||
**Exception**: Use unsigned types if you really want modulo arithmetic.
|
**Exception**: Use unsigned types if you really want modulo arithmetic.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user