mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00:00
12 lines
158 B
C++
12 lines
158 B
C++
#include "tests.h"
|
|
|
|
int main()
|
|
{
|
|
#ifdef WINDOWS
|
|
_CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF|_CRTDBG_ALLOC_MEM_DF);
|
|
#endif // WINDOWS
|
|
Test::RunAll();
|
|
|
|
return 0;
|
|
}
|