Skip to content

Commit 0cc0038

Browse files
committed
Revert "Fix Compiler warnings."
This reverts commit cbb7c8b.
1 parent b7bf96d commit 0cc0038

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/symboldatabase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3927,7 +3927,7 @@ std::string ValueType::str() const
39273927
ret += " double";
39283928
else if (type == LONGDOUBLE)
39293929
ret += " long double";
3930-
for (unsigned int p = 0; p < pointer; p++) {
3930+
for (int p = 0; p < pointer; p++) {
39313931
ret += " *";
39323932
if (constness & (2 << p))
39333933
ret += " const";

0 commit comments

Comments
 (0)