Removed useless parentheses
This commit is contained in:
parent
9b0f41e1a0
commit
7dac213734
|
@ -60,7 +60,7 @@ bool cppcheck::Platform::platform(cppcheck::Platform::PlatformType type)
|
||||||
if (type == Unspecified) {
|
if (type == Unspecified) {
|
||||||
defaultSign = '\0';
|
defaultSign = '\0';
|
||||||
} else {
|
} else {
|
||||||
defaultSign = (std::numeric_limits<char>::is_signed) ? 's' : 'u';
|
defaultSign = std::numeric_limits<char>::is_signed ? 's' : 'u';
|
||||||
}
|
}
|
||||||
char_bit = 8;
|
char_bit = 8;
|
||||||
short_bit = char_bit * sizeof_short;
|
short_bit = char_bit * sizeof_short;
|
||||||
|
|
Loading…
Reference in New Issue