From: Erik Verbruggen Date: Wed, 27 Feb 2013 14:27:20 +0000 (+0100) Subject: Fix null-unwind helper compilation. X-Git-Tag: upstream/5.2.1~669^2~659^2~194 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5250ebdff82c8f4291de618fcaf9281bdd078620;p=platform%2Fupstream%2Fqtdeclarative.git Fix null-unwind helper compilation. Change-Id: I82af0ae373157d412b138334c8d80fa6e17591df Reviewed-by: Simon Hausmann --- diff --git a/src/v4/qv4unwindhelper.cpp b/src/v4/qv4unwindhelper.cpp index 4d78474..32d5a8a 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