forked from qt-creator/qt-creator
CdbExt: Fix compile warning
Change-Id: I52bbf904a3a6a3cd3d5dcab34e649a44d406af98 Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
This commit is contained in:
committed by
David Schulz
parent
a053724c28
commit
c9dc686a04
@@ -2231,7 +2231,7 @@ static bool dumpQDateTime(const SymbolGroupValue &v, std::wostream &str)
|
||||
<< offset << separator
|
||||
<< std::hex;
|
||||
if (timeZoneString.length() > 2) {
|
||||
for (int i = 1; i < timeZoneString.length() - 1; ++i) // remove '"'
|
||||
for (unsigned i = 1; i < timeZoneString.length() - 1; ++i) // remove '"'
|
||||
str << (int)timeZoneString.at(i);
|
||||
}
|
||||
str << std::dec << separator << status;
|
||||
|
||||
Reference in New Issue
Block a user