diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-17 23:52:11 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-19 06:09:42 -0600 |
commit | d9a83886f9aed4d61d9d18894637f883491b384b (patch) | |
tree | d98087be032d6af63798d19270efa9bc9a46fa9f /src/libutil/error.hh | |
parent | 4050245faab80dad6cedaa13e481278456a139c0 (diff) |
libutil: remove exception handling workingness check
within lix itself this problem is caught by the test suite. outside of
lix itself three cases can be had: either the problem is fully inside
lix libs, fully inside user code, or it exists at the boundary. the
first is caught by the test suite, the second isn't caught at all, and
the third is something lix should not be responsible for.
Change-Id: I95aa35d8cb6f0ef5816a2941c467bc0c15916063
Diffstat (limited to 'src/libutil/error.hh')
-rw-r--r-- | src/libutil/error.hh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libutil/error.hh b/src/libutil/error.hh index 9cb3a624d..924366580 100644 --- a/src/libutil/error.hh +++ b/src/libutil/error.hh @@ -200,8 +200,4 @@ public: } }; -/** Throw an exception for the purpose of checking that exception handling works; see 'initLibUtil()'. - */ -void throwExceptionSelfCheck(); - } |