summaryrefslogtreecommitdiff
path: root/libs/ode-0.16.1/tests/UnitTest++/src/ReportAssert.cpp
blob: 6c7db58607b736817674c4968b535637ee42fe64 (plain)
1
2
3
4
5
6
7
8
9
10
#include "AssertException.h"

namespace UnitTest {

void ReportAssert(char const* description, char const* filename, int const lineNumber)
{
    throw AssertException(description, filename, lineNumber);
}

}