From 5250ebdff82c8f4291de618fcaf9281bdd078620 Mon Sep 17 00:00:00 2001 From: Erik Verbruggen Date: Wed, 27 Feb 2013 15:27:20 +0100 Subject: [PATCH] Fix null-unwind helper compilation. Change-Id: I82af0ae373157d412b138334c8d80fa6e17591df Reviewed-by: Simon Hausmann --- src/v4/qv4unwindhelper.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/v4/qv4unwindhelper.cpp b/src/v4/qv4unwindhelper.cpp index 4d78474671..32d5a8a695 100644 --- a/src/v4/qv4unwindhelper.cpp +++ b/src/v4/qv4unwindhelper.cpp @@ -29,9 +29,9 @@ using namespace QQmlJS::VM; UnwindHelper *UnwindHelper::create() { return 0; } UnwindHelper::UnwindHelper() {} UnwindHelper::~UnwindHelper() {} -void UnwindHelper::registerFunction(Function *function); -void UnwindHelper::registerFunctions(QVector functions); -void UnwindHelper::deregisterFunction(Function *function); -void UnwindHelper::deregisterFunctions(QVector functions); +void UnwindHelper::registerFunction(Function *function) {Q_UNUSED(function);} +void UnwindHelper::registerFunctions(QVector functions) {Q_UNUSED(functions);} +void UnwindHelper::deregisterFunction(Function *function) {Q_UNUSED(function);} +void UnwindHelper::deregisterFunctions(QVector functions) {Q_UNUSED(functions);} #endif // USE_NULL_HELPER