summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Weber <niels.weber@theqtcompany.com>2015-10-16 10:11:10 +0200
committerNiels Weber <niels.weber@theqtcompany.com>2015-10-16 08:17:49 +0000
commit9dd457a6787427a95bfd36aa3b9f14dce05f9cbf (patch)
treef63c1e4fefa25ab83c889cda556b7fed5d64901b
parent92b34380fb97089213ae40e67ab435f2e3f5b4e8 (diff)
downloadqt-creator-9dd457a6787427a95bfd36aa3b9f14dce05f9cbf.tar.gz
Debugger: Fix a warning
Followup to 01006580c10a4b9f8be689af61e90cd0f9134688 Change-Id: I4acd54472df03c019493426303d5a52a9902f9fd Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--src/plugins/debugger/debuggerprotocol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerprotocol.cpp b/src/plugins/debugger/debuggerprotocol.cpp
index 763c9477c6..7f3525b0a0 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)