mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
2b051fc1ff
Use ARABICA_NO_WCHAR_T to exclude the bits that don't build under Cygwin
23 lines
488 B
C++
23 lines
488 B
C++
#ifdef _MSC_VER
|
|
#pragma warning(disable: 4786 4250 4503)
|
|
#endif
|
|
|
|
#ifndef ARABICA_NO_WCHAR_T
|
|
#include <iostream>
|
|
#endif
|
|
|
|
#include "../DOM/dom_test_suite.hpp"
|
|
|
|
////////////////////////////////////////////////
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
#ifndef ARABICA_NO_WCHAR_T
|
|
DOM_test_suite<std::wstring, Arabica::default_string_adaptor<std::wstring> >(argc, argv);
|
|
#else
|
|
std::cout << "No DOM_wide tests on this platform :)" << std::endl;
|
|
#endif
|
|
|
|
return 0;
|
|
} // main
|
|
|
|
// end of file
|