17 lines
257 B
C++
17 lines
257 B
C++
#ifndef PASSPORTASSERT_HPP
|
|
#define PASSPORTASSERT_HPP
|
|
|
|
#include <stdlib.h>
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
inline void PassportAssert(bool assertion)
|
|
{
|
|
if (!assertion)
|
|
{
|
|
cout << "ASSERT FALIED" << endl;
|
|
abort();
|
|
}
|
|
}
|
|
|
|
#endif |