Fix null-unwind helper compilation.
Change-Id: I82af0ae373157d412b138334c8d80fa6e17591df Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
This commit is contained in:
parent
6fecad5697
commit
5250ebdff8
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue