Apply Windows compatability hack.

This commit is contained in:
David Given
2021-05-18 22:46:57 +01:00
parent 57fc787819
commit ea43b3dc6a

View File

@@ -12,6 +12,11 @@
#include <set>
#include <cassert>
#if defined(_WIN32) || defined(__WIN32__)
#include <direct.h>
#define mkdir(A, B) _mkdir(A)
#endif
typedef double nanoseconds_t;
class Bytes;