summaryrefslogtreecommitdiff
path: root/src/libs/qtcreatorcdbext/containers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/qtcreatorcdbext/containers.cpp')
-rw-r--r--src/libs/qtcreatorcdbext/containers.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/qtcreatorcdbext/containers.cpp b/src/libs/qtcreatorcdbext/containers.cpp
index 88229af8fc..c70c377200 100644
--- a/src/libs/qtcreatorcdbext/containers.cpp
+++ b/src/libs/qtcreatorcdbext/containers.cpp
@@ -534,7 +534,7 @@ StdMapNode *StdMapNode::buildMap(const SymbolGroupValue &n)
static inline void indentStream(std::ostream &os, unsigned indent)
{
- for (unsigned i = 0; i < indent; i++)
+ for (unsigned i = 0; i < indent; ++i)
os << ' ';
}
@@ -923,7 +923,7 @@ static inline SymbolGroupValueVector qMapNodes(const SymbolGroupValue &v, Vector
SymbolGroupValueVector rc;
rc.reserve(count);
SymbolGroupValue n = e["forward"][unsigned(0)];
- for (VectorIndexType i = 0; i < count && n && n.pointerValue() != ePtr; i++) {
+ for (VectorIndexType i = 0; i < count && n && n.pointerValue() != ePtr; ++i) {
rc.push_back(n);
n = n["forward"][unsigned(0)];
}
@@ -986,7 +986,7 @@ static inline AbstractSymbolGroupNodePtrVector
rc.reserve(count);
std::string errorMessage;
SymbolGroup *sg = v.node()->symbolGroup();
- for (VectorIndexType i = 0; i < count ; i++) {
+ for (VectorIndexType i = 0; i < count ; ++i) {
const ULONG64 nodePtr = childNodes.at(i).pointerValue();
if (!nodePtr)
return AbstractSymbolGroupNodePtrVector();