Index: src/property-details.h |
diff --git a/src/property-details.h b/src/property-details.h |
index 6e9184d39ecc4df6ec0c594a75d809c5569901f6..92bf0b497f95c849c0c71bd2400e2deff2b26eb9 100644 |
--- a/src/property-details.h |
+++ b/src/property-details.h |
@@ -340,6 +340,8 @@ class PropertyDetails BASE_EMBEDDED { |
: public BitField<PropertyAttributes, ConstnessField::kNext, 3> {}; |
static const int kAttributesReadOnlyMask = |
(READ_ONLY << AttributesField::kShift); |
+ static const int kAttributesDontDeleteMask = |
+ (DONT_DELETE << AttributesField::kShift); |
// Bit fields for normalized objects. |
class PropertyCellTypeField |