mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-15 19:48:00 +01:00
15 lines
322 B
C++
15 lines
322 B
C++
|
|
#ifdef _MSC_VER
|
|
#pragma warning(disable:4244 4267)
|
|
#endif
|
|
|
|
#include <iostream>
|
|
#include "xpath_test_suite.hpp"
|
|
|
|
/////////////////////////////////////////
|
|
int main(int argc, const char** argv)
|
|
{
|
|
bool ok = XPath_test_suite<std::string, Arabica::default_string_adaptor<std::string> >(argc, argv);
|
|
return !ok;
|
|
} // main
|
|
|