anchor nix::Exit exception

This commit is contained in:
Will Dietz 2017-11-07 14:42:34 -06:00
parent 2f5789c5d6
commit 9d7ce0bf45
2 changed files with 2 additions and 0 deletions

View file

@ -369,5 +369,6 @@ PrintFreed::~PrintFreed()
% showBytes(results.bytesFreed);
}
Exit::~Exit() { }
}

View file

@ -17,6 +17,7 @@ public:
int status;
Exit() : status(0) { }
Exit(int status) : status(status) { }
virtual ~Exit();
};
int handleExceptions(const string & programName, std::function<void()> fun);