avoid fix for noisy signedness warning

This commit is contained in:
Daniel Marjamäki 2015-10-11 12:22:37 +02:00
parent ac9cb87e04
commit 0aad8af9ae
1 changed files with 1 additions and 1 deletions

View File

@ -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";