Avoid overflow in int2str()
The previous maxVal initialisation elicited a warning; by using unsigned we can format all values of int including the most negative anyway.
Please register or sign in to comment
The previous maxVal initialisation elicited a warning; by using unsigned we can format all values of int including the most negative anyway.