Revert "Fix Compiler warnings."

This reverts commit cbb7c8b854.
This commit is contained in:
Daniel Marjamäki 2015-12-13 19:58:27 +01:00
parent b7bf96d81a
commit 0cc003830a
1 changed files with 1 additions and 1 deletions

View File

@ -3927,7 +3927,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";