Remove logic for recovering from OOM

This commit is contained in:
Max Brunsfeld 2016-11-04 09:18:38 -07:00
parent e53beb66c9
commit 4106ecda43
14 changed files with 162 additions and 501 deletions

View file

@ -24,11 +24,7 @@ typedef struct {
typedef Array(StackSlice) StackSliceArray;
typedef struct {
enum {
StackPopFailed,
StackPopStoppedAtError,
StackPopSucceeded,
} status;
bool stopped_at_error;
StackSliceArray slices;
} StackPopResult;