avoid fix for noisy signedness warning
This commit is contained in:
parent
ac9cb87e04
commit
0aad8af9ae
|
@ -3914,7 +3914,7 @@ std::string ValueType::str() const
|
|||
ret += " double";
|
||||
else if (type == LONGDOUBLE)
|
||||
ret += " long double";
|
||||
for (unsigned int p = 0; p < pointer; p++) {
|
||||
for (int p = 0; p < pointer; p++) {
|
||||
ret += " *";
|
||||
if (constness & (2 << p))
|
||||
ret += " const";
|
||||
|
|
Loading…
Reference in New Issue