mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-30 22:23:40 +01:00
16 lines
319 B
C++
16 lines
319 B
C++
|
#ifdef _MSC_VER
|
||
|
#pragma warning(disable: 4786 4250 4503)
|
||
|
#endif
|
||
|
|
||
|
#include "util_test_suite.hpp"
|
||
|
|
||
|
////////////////////////////////////////////////
|
||
|
int main(int argc, const char* argv[])
|
||
|
{
|
||
|
Util_test_suite<std::wstring, Arabica::default_string_adaptor<std::wstring> >(argc, argv);
|
||
|
|
||
|
return 0;
|
||
|
} // main
|
||
|
|
||
|
// end of file
|