mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
16 lines
193 B
C++
16 lines
193 B
C++
#include "AssertException.h"
|
|
|
|
#ifndef UNITTEST_NO_EXCEPTIONS
|
|
|
|
namespace UnitTest {
|
|
|
|
AssertException::AssertException()
|
|
{}
|
|
|
|
AssertException::~AssertException() throw()
|
|
{}
|
|
|
|
}
|
|
|
|
#endif
|