diff options
Diffstat (limited to 'src/qml/jsruntime/qv4jsonobject.cpp')
| -rw-r--r-- | src/qml/jsruntime/qv4jsonobject.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4jsonobject.cpp b/src/qml/jsruntime/qv4jsonobject.cpp index 2909d5cd54..5f00062ad6 100644 --- a/src/qml/jsruntime/qv4jsonobject.cpp +++ b/src/qml/jsruntime/qv4jsonobject.cpp @@ -820,7 +820,7 @@ QString Stringify::JO(Object *o) + stepback + u'}'; } - indent = stepback; + indent = std::move(stepback); stack.pop(); return result; } @@ -864,7 +864,7 @@ QString Stringify::JA(Object *a) result = QLatin1String("[\n") + indent + partial.join(separator) + u'\n' + stepback + u']'; } - indent = stepback; + indent = std::move(stepback); stack.pop(); return result; } |
