aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4global_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4global_p.h')
-rw-r--r--src/qml/jsruntime/qv4global_p.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/qml/jsruntime/qv4global_p.h b/src/qml/jsruntime/qv4global_p.h
index 382dd9b7e1..7f82a02ae0 100644
--- a/src/qml/jsruntime/qv4global_p.h
+++ b/src/qml/jsruntime/qv4global_p.h
@@ -267,7 +267,6 @@ struct PropertyAttributes
uchar m_mask : 4;
};
struct {
-#ifndef QT_NO_BITFIELDS
uchar m_type : 1;
uchar m_writable : 1;
uchar m_enumerable : 1;
@@ -276,16 +275,6 @@ struct PropertyAttributes
uchar writable_set : 1;
uchar enumerable_set : 1;
uchar configurable_set : 1;
-#else
- uchar m_type = 1;
- uchar m_writable = 1;
- uchar m_enumerable = 1;
- uchar m_configurable = 1;
- uchar type_set = 1;
- uchar writable_set = 1;
- uchar enumerable_set = 1;
- uchar configurable_set = 1;
-#endif
};
};