As agreed in #255, commits squashed (ES.100)

As agreed in #255, two commits squashed.
(ES.100: Don't mix signed and unsigned arithmetic)
This commit is contained in:
Eliyahu Ravuna
2015-10-02 16:02:20 +03:00
parent f3780fa74b
commit c4b3b8b0c6

View File

@@ -8380,7 +8380,9 @@ This example has many more problems.
##### Example ##### Example
??? unsigned x = 100;
unsigned y = 102;
cout << abs(x-y) << '\n'; //wrong result
##### Note ##### Note