Skip to content
Snippets Groups Projects
Commit 9dd457a6 authored by Niels Weber's avatar Niels Weber
Browse files

Debugger: Fix a warning


Followup to 01006580

Change-Id: I4acd54472df03c019493426303d5a52a9902f9fd
Reviewed-by: default avatarChristian Stenger <christian.stenger@theqtcompany.com>
parent 92b34380
No related branches found
No related tags found
No related merge requests found
......@@ -267,7 +267,7 @@ static QByteArray ind(int indent)
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) {
*str += ',';
if (multiline)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment