diff options
author | Niels Weber <[email protected]> | 2015-10-16 10:11:10 +0200 |
---|---|---|
committer | Niels Weber <[email protected]> | 2015-10-16 08:17:49 +0000 |
commit | 9dd457a6787427a95bfd36aa3b9f14dce05f9cbf (patch) | |
tree | f63c1e4fefa25ab83c889cda556b7fed5d64901b /src/plugins/debugger/debuggerprotocol.cpp | |
parent | 92b34380fb97089213ae40e67ab435f2e3f5b4e8 (diff) |
Debugger: Fix a warning
Followup to 01006580c10a4b9f8be689af61e90cd0f9134688
Change-Id: I4acd54472df03c019493426303d5a52a9902f9fd
Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerprotocol.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerprotocol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerprotocol.cpp b/src/plugins/debugger/debuggerprotocol.cpp index 763c9477c62..7f3525b0a0f 100644 --- a/src/plugins/debugger/debuggerprotocol.cpp +++ b/src/plugins/debugger/debuggerprotocol.cpp @@ -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) |