aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-01-02 15:25:25 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2013-01-03 12:07:42 +0100
commit283e5efe5cc41767b9e0ad4ecae19d4b43f02582 (patch)
treeb61b8b4d0aa510549d47dbfe074bfd4b3a14bd22 /main.cpp
parenteb8bb49a1331e0c1739c2ac0ff0c443df3b56e81 (diff)
Remove unused memory manager classes
Unify the base class with the GC memory manager and remove the memory manager that didn't manage ;-) Change-Id: I8579bc80b66688e98203448afc645a231c97fede Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 39f90f7d6e..8f1f147829 100644
--- a/main.cpp
+++ b/main.cpp
@@ -333,7 +333,7 @@ int main(int argc, char *argv[])
#endif // QMLJS_NO_LLVM
case use_masm:
case use_moth: {
- QScopedPointer<QQmlJS::VM::MemoryManager> mm(new QQmlJS::VM::MemoryManagerWithNativeStack);
+ QScopedPointer<QQmlJS::VM::MemoryManager> mm(new QQmlJS::VM::MemoryManager);
QScopedPointer<QQmlJS::EvalISelFactory> iSelFactory;
if (mode == use_moth) {
iSelFactory.reset(new QQmlJS::Moth::ISelFactory);