mirror of
https://github.com/holub/mame
synced 2025-05-13 01:24:20 +03:00
18 lines
183 B
C++
18 lines
183 B
C++
#include "AssertException.h"
|
|
|
|
#ifndef UNITTEST_NO_EXCEPTIONS
|
|
|
|
namespace UnitTest {
|
|
|
|
AssertException::AssertException()
|
|
{
|
|
}
|
|
|
|
AssertException::~AssertException() throw()
|
|
{
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|