aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/memory/qv4heap_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/memory/qv4heap_p.h')
-rw-r--r--src/qml/memory/qv4heap_p.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/qml/memory/qv4heap_p.h b/src/qml/memory/qv4heap_p.h
index 63d6b0a609..53933cd090 100644
--- a/src/qml/memory/qv4heap_p.h
+++ b/src/qml/memory/qv4heap_p.h
@@ -70,7 +70,6 @@ struct InternalClass;
struct VTable
{
const VTable * const parent;
-#ifndef QT_NO_BITFIELDS
uint inlinePropertyOffset : 16;
uint nInlineProperties : 16;
uint isExecutionContext : 1;
@@ -81,18 +80,6 @@ struct VTable
uint isArrayData : 1;
uint unused : 18;
uint type : 8;
-#else
- uint inlinePropertyOffset = 16;
- uint nInlineProperties = 16;
- uint isExecutionContext = 1;
- uint isString = 1;
- uint isObject = 1;
- uint isFunctionObject = 1;
- uint isErrorObject = 1;
- uint isArrayData = 1;
- uint unused = 18;
- uint type = 8;
-#endif
const char *className;
void (*destroy)(Heap::Base *);
void (*markObjects)(Heap::Base *, MarkStack *markStack);