forked from lix-project/lix
Merge pull request #1678 from dtzWill/feature/anchor-exit-exception
anchor nix::Exit exception
This commit is contained in:
commit
897ca33a1c
|
@ -369,5 +369,6 @@ PrintFreed::~PrintFreed()
|
|||
% showBytes(results.bytesFreed);
|
||||
}
|
||||
|
||||
Exit::~Exit() { }
|
||||
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue