aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/memory/memory.pri
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2016-12-22 12:33:33 +0100
committerLars Knoll <lars.knoll@qt.io>2017-01-25 08:30:21 +0000
commitac7a0ca517db963f8ecd82b9792f5fdcc85b78ae (patch)
tree010bac1f2de4d0fb3376e42a03892cb927212af5 /src/qml/memory/memory.pri
parentff1a728e957c36d566055caf922d160cbbbd7587 (diff)
Add data structures that will get used for the new garbage collector
Chunk is a 64k block of memory and the basic structure used in the new GC. HeapItem is a pointer to a slot of unallocated memory. When allocating memory, a number of HeapItems will get converted to a the correct class derived from Heap::Base. Change-Id: Id7c606df2d32501702330fbb6fa68ec66f62d6f9 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/memory/memory.pri')
-rw-r--r--src/qml/memory/memory.pri4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/memory/memory.pri b/src/qml/memory/memory.pri
index 04b7566ccc..38fadbf23f 100644
--- a/src/qml/memory/memory.pri
+++ b/src/qml/memory/memory.pri
@@ -6,8 +6,8 @@ SOURCES += \
$$PWD/qv4mm.cpp \
HEADERS += \
- $$PWD/qv4mm_p.h
-
+ $$PWD/qv4mm_p.h \
+ $$PWD/qv4mmdefs_p.h
}
HEADERS += \