Fix null-unwind helper compilation.

Change-Id: I82af0ae373157d412b138334c8d80fa6e17591df
Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
This commit is contained in:
Erik Verbruggen 2013-02-27 15:27:20 +01:00 committed by Simon Hausmann
parent 6fecad5697
commit 5250ebdff8
1 changed files with 4 additions and 4 deletions

View File

@ -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<Function *> functions);
void UnwindHelper::deregisterFunction(Function *function);
void UnwindHelper::deregisterFunctions(QVector<Function *> functions);
void UnwindHelper::registerFunction(Function *function) {Q_UNUSED(function);}
void UnwindHelper::registerFunctions(QVector<Function *> functions) {Q_UNUSED(functions);}
void UnwindHelper::deregisterFunction(Function *function) {Q_UNUSED(function);}
void UnwindHelper::deregisterFunctions(QVector<Function *> functions) {Q_UNUSED(functions);}
#endif // USE_NULL_HELPER