Fix broken hole drilling

This commit is contained in:
tamasmeszaros 2021-07-26 11:59:01 +02:00
parent f51f1cc368
commit 7ed0d6b886

View File

@ -10,9 +10,9 @@
using SignalT = decltype (SIGSEGV); using SignalT = decltype (SIGSEGV);
template<class TryFn, class CatchFn, int N> template<class TryFn, class CatchFn, int N>
void try_catch_signal(const SignalT (&/*sigs*/)[N], TryFn &&/*fn*/, CatchFn &&/*cfn*/) void try_catch_signal(const SignalT (&/*sigs*/)[N], TryFn &&fn, CatchFn &&/*cfn*/)
{ {
// TODO fn();
} }
#endif #endif