15 lines
128 B
C++
15 lines
128 B
C++
|
#include "elfspy/Fail.h"
|
||
|
|
||
|
#include <cstdlib>
|
||
|
|
||
|
namespace spy
|
||
|
{
|
||
|
|
||
|
Fail::~Fail()
|
||
|
{
|
||
|
show();
|
||
|
std::exit(-1);
|
||
|
}
|
||
|
|
||
|
} // namespace spy
|