mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-18 21:13:02 +01:00
11 lines
172 B
C++
11 lines
172 B
C++
#ifndef UNITTEST_ASSERT_H
|
|
#define UNITTEST_ASSERT_H
|
|
|
|
namespace UnitTest {
|
|
|
|
void ReportAssert(char const* description, char const* filename, int lineNumber);
|
|
|
|
}
|
|
|
|
#endif
|