Files
yaml-cpp/yaml-reader/main.cpp
T

12 lines
158 B
C++
Raw Normal View History

2008-09-03 22:20:39 +00:00
#include "tests.h"
int main()
2008-09-03 22:20:39 +00:00
{
#ifdef WINDOWS
_CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF|_CRTDBG_ALLOC_MEM_DF);
#endif // WINDOWS
Test::RunAll();
2008-09-03 22:20:39 +00:00
return 0;
}