WindowsXP/ds/security/passport/common/tools/passportassert.hpp
2025-04-27 07:49:33 -04:00

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