aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4regexpobject.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/qv4regexpobject.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/qv4regexpobject.cpp')
-rw-r--r--src/qml/jsruntime/qv4regexpobject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4regexpobject.cpp b/src/qml/jsruntime/qv4regexpobject.cpp
index fdc595b2a4..201043c231 100644
--- a/src/qml/jsruntime/qv4regexpobject.cpp
+++ b/src/qml/jsruntime/qv4regexpobject.cpp
@@ -478,7 +478,7 @@ ReturnedValue RegExpPrototype::method_exec(const FunctionObject *b, const Value
if (!r)
return scope.engine->throwTypeError();
- ScopedValue arg(scope, argc ? argv[0]: Value::undefinedValue());
+ ScopedValue arg(scope, argc ? argv[0] : Value::undefinedValue());
ScopedString str(scope, arg->toString(scope.engine));
if (scope.hasException())
RETURN_UNDEFINED();