aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4engine.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-10-24 08:49:35 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-29 10:39:06 +0100
commitc4dcc327d96788d4d0cd91303b3f1270dd3efd0a (patch)
tree383b57195ee4e41621881a788611b2979d6c145e /src/qml/jsruntime/qv4engine.cpp
parent25fbdfc66fa995bfe633b3c31d635045f7cf66dd (diff)
Cleanup: Remove now unused throwInternal() method
This method was throwing a C++ exception in the old exception handling and is not needed anymore. Change-Id: If67696cdbd260225ae60720a1035941fe7e1e650 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4engine.cpp')
-rw-r--r--src/qml/jsruntime/qv4engine.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp
index bb11011669..4e7beb51c1 100644
--- a/src/qml/jsruntime/qv4engine.cpp
+++ b/src/qml/jsruntime/qv4engine.cpp
@@ -866,14 +866,4 @@ QQmlError ExecutionEngine::catchExceptionAsQmlError(ExecutionContext *context)
return error;
}
-#if !defined(V4_CXX_ABI_EXCEPTION)
-struct DummyException
-{};
-
-void ExecutionEngine::throwInternal()
-{
- throw DummyException();
-}
-#endif
-
QT_END_NAMESPACE