mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-18 13:03:06 +01:00
12 lines
228 B
C++
12 lines
228 B
C++
#include "ReportAssert.h"
|
|
#include "AssertException.h"
|
|
|
|
namespace UnitTest {
|
|
|
|
void ReportAssert(char const* description, char const* filename, int lineNumber)
|
|
{
|
|
throw AssertException(description, filename, lineNumber);
|
|
}
|
|
|
|
}
|