Debugger: Fix a warning

Followup to 01006580c1

Change-Id: I4acd54472df03c019493426303d5a52a9902f9fd
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
Niels Weber
2015-10-16 10:11:10 +02:00
parent 92b34380fb
commit 9dd457a678

View File

@@ -267,7 +267,7 @@ static QByteArray ind(int indent)
void GdbMi::dumpChildren(QByteArray * str, bool multiline, int indent) const void GdbMi::dumpChildren(QByteArray * str, bool multiline, int indent) const
{ {
for (size_t i = 0; i < m_children.size(); ++i) { for (int i = 0; i < m_children.size(); ++i) {
if (i != 0) { if (i != 0) {
*str += ','; *str += ',';
if (multiline) if (multiline)