diff options
Diffstat (limited to 'src/unit.h')
-rw-r--r-- | src/unit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/unit.h b/src/unit.h index 43bbe67573..717c928075 100644 --- a/src/unit.h +++ b/src/unit.h @@ -213,6 +213,9 @@ struct Meta { /* Ignore this unit when isolating */ bool ignore_on_isolate; + /* Ignore this unit when snapshotting */ + bool ignore_on_snapshot; + /* Did the last condition check suceed? */ bool condition_result; @@ -364,9 +367,6 @@ struct UnitVTable { /* Instances make no sense for this type */ bool no_instances:1; - /* Exclude this type from snapshots */ - bool no_snapshots:1; - /* Exclude from automatic gc */ bool no_gc:1; |