aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4dataview.cpp
diff options
context:
space:
mode:
authorIvan Tkachenko <me@ratijas.tk>2021-10-06 19:42:02 +0300
committerIvan Tkachenko <me@ratijas.tk>2021-10-07 02:33:18 +0300
commit56d4b0a5ce8dd5485e6cebb4187676e5a4d42ca0 (patch)
tree3b2e9faf36830178407ffde83fa2000be2943644 /src/qml/jsruntime/qv4dataview.cpp
parent664fcc6ecf7243366e70545ffa08453061be0907 (diff)
Fix missing whitespace after `argv[N]:` pattern
Change-Id: I6657ffd1e29124211642c62f719057cfe9b2aa6c Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4dataview.cpp')
-rw-r--r--src/qml/jsruntime/qv4dataview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4dataview.cpp b/src/qml/jsruntime/qv4dataview.cpp
index 264057e162..0d77b0fc64 100644
--- a/src/qml/jsruntime/qv4dataview.cpp
+++ b/src/qml/jsruntime/qv4dataview.cpp
@@ -79,7 +79,7 @@ ReturnedValue DataViewCtor::virtualCallAsConstructor(const FunctionObject *f, co
if (!newTarget || !buffer)
return scope.engine->throwTypeError();
- uint offset = ::toIndex(scope.engine, argc > 1 ? argv[1]: Value::undefinedValue());
+ uint offset = ::toIndex(scope.engine, argc > 1 ? argv[1] : Value::undefinedValue());
if (scope.hasException())
return Encode::undefined();
if (buffer->isDetachedBuffer())