I have the following code:
unsigned int x, last_x;
int dx;
[...]
dx = x - last_x;
Compiling this with g++ (4.7.2) and -Wsign-conversion produces the following:
warning: conversion to ‘int’ from ‘unsigned int’ may change the sign of the result [-Wsign-conversion]
The only way to make the warning disappear is by changing to:
dx = static_cast<int>(x) - static_cast<int>(last_x);
or
dx = static_cast<int>(x - last_x);
What is the explanation for this behaviour? Is the -
operator only defined for signed ints? I would expect to have a -
operator that takes unsigned values and returns a signed value.
Operations on
unsigned int
s will result inunsigned int
s. Even the subtraction will yield anunsigned int
. the value just wraps around: unlike signed integer arithmetic, overflow and underflow for unsigned values results in well define behavior: the arithmetic is simply modulusN
whereN
is one plus the maximum value which can be represented by the unsigned integer.