fix: macOS build

This commit is contained in:
Sebastian Ullrich 2020-05-07 16:03:58 +02:00
parent 5f1a052998
commit 5d260c396f
2 changed files with 3 additions and 1 deletions

View file

@ -8,9 +8,10 @@ Author: Leonardo de Moura
#include <windows.h>
#elif defined(__APPLE__)
#include <mach-o/dyld.h>
#include <unistd.h>
#else
// Linux include files
#include <unistd.h>
#include <unistd.h> // NOLINT
#endif
#include <iostream>
#include <chrono>

View file

@ -8,6 +8,7 @@ Author: Leonardo de Moura
#include <windows.h>
#elif defined(__APPLE__)
#include <mach-o/dyld.h>
#include <unistd.h>
#else
// Linux include files
#include <unistd.h>