Files
QIDIStudio/src/libslic3r/TryCatchSignal.hpp
QIDI TECH 585146181b update
2024-09-03 09:34:33 +08:00

21 lines
353 B
C++

#ifndef TRY_CATCH_SIGNAL_HPP
#define TRY_CATCH_SIGNAL_HPP
#ifdef _MSC_VER
#include "TryCatchSignalSEH.hpp"
#else
#include <csignal>
using SignalT = decltype (SIGSEGV);
template<class TryFn, class CatchFn, int N>
void try_catch_signal(const SignalT (&/*sigs*/)[N], TryFn &&fn, CatchFn &&/*cfn*/)
{
fn();
}
#endif
#endif // TRY_CATCH_SIGNAL_HPP