disable io-benchmark on Windows

This commit is contained in:
alex85k 2014-06-05 21:08:31 +06:00
parent 42d3ee9b94
commit c4998990e5

View File

@ -79,6 +79,11 @@ int main(int argc, char *argv[])
SimpleLogger().Write() << "Not supported on FreeBSD";
return 0;
#endif
#ifdef WIN32
SimpleLogger().Write() << "Not supported on Windows";
return 0;
#else
if (1 == argc)
{
@ -339,4 +344,5 @@ int main(int argc, char *argv[])
return -1;
}
return 0;
#endif
}