aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4symbol.cpp
diff options
context:
space:
mode:
authorIvan Tkachenko <[email protected]>2021-10-06 19:42:02 +0300
committerIvan Tkachenko <[email protected]>2021-10-07 02:33:18 +0300
commit56d4b0a5ce8dd5485e6cebb4187676e5a4d42ca0 (patch)
tree3b2e9faf36830178407ffde83fa2000be2943644 /src/qml/jsruntime/qv4symbol.cpp
parent664fcc6ecf7243366e70545ffa08453061be0907 (diff)
Fix missing whitespace after `argv[N]:` pattern
Change-Id: I6657ffd1e29124211642c62f719057cfe9b2aa6c Reviewed-by: Ulf Hermann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4symbol.cpp')
-rw-r--r--src/qml/jsruntime/qv4symbol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4symbol.cpp b/src/qml/jsruntime/qv4symbol.cpp
index ec25b07fba..51b8df5faa 100644
--- a/src/qml/jsruntime/qv4symbol.cpp
+++ b/src/qml/jsruntime/qv4symbol.cpp
@@ -87,7 +87,7 @@ ReturnedValue SymbolCtor::virtualCallAsConstructor(const FunctionObject *f, cons
ReturnedValue SymbolCtor::method_for(const FunctionObject *f, const Value *, const Value *argv, int argc)
{
Scope scope(f);
- ScopedValue k(scope, argc ? argv[0]: Value::undefinedValue());
+ ScopedValue k(scope, argc ? argv[0] : Value::undefinedValue());
ScopedString key(scope, k->toString(scope.engine));
if (scope.hasException())
return Encode::undefined();