From 452c6fd158075aa1dc376894466b2a8d6f77e1d0 Mon Sep 17 00:00:00 2001 From: Magnus Norddahl Date: Wed, 10 Oct 2018 04:57:35 +0200 Subject: [PATCH] - fix return warning --- src/scripting/vm/vmframe.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scripting/vm/vmframe.cpp b/src/scripting/vm/vmframe.cpp index a5a682040..9e0aa26c7 100644 --- a/src/scripting/vm/vmframe.cpp +++ b/src/scripting/vm/vmframe.cpp @@ -519,6 +519,7 @@ int VMCall(VMFunction *func, VMValue *params, int numparams, VMReturn *results, auto exceptInfo = CurrentJitExceptInfo; CurrentJitExceptInfo = prevExceptInfo; VMRethrowException(exceptInfo); + return 0; } } }