aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4unwindhelper_p-arm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4unwindhelper_p-arm.h')
-rw-r--r--src/qml/jsruntime/qv4unwindhelper_p-arm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4unwindhelper_p-arm.h b/src/qml/jsruntime/qv4unwindhelper_p-arm.h
index 740e6c8ca0..fb3f8040a4 100644
--- a/src/qml/jsruntime/qv4unwindhelper_p-arm.h
+++ b/src/qml/jsruntime/qv4unwindhelper_p-arm.h
@@ -73,7 +73,7 @@ static QMap<quintptr, Function*> allFunctions;
static Function *lookupFunction(void *pc)
{
quintptr key = reinterpret_cast<quintptr>(pc);
- QMap<quintptr, Function*>::ConstIterator it = allFunctions.lowerBound(key);
+ QMap<quintptr, Function*>::Iterator it = allFunctions.lowerBound(key);
if (it != allFunctions.begin() && allFunctions.count() > 0)
--it;
if (it == allFunctions.end())