mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
added back unistd.h for non-windows
This commit is contained in:
parent
bd6e30070d
commit
ff6e9c0416
2 changed files with 6 additions and 2 deletions
|
@ -17,7 +17,9 @@
|
|||
#include <stdint.h>
|
||||
#include <iterator>
|
||||
|
||||
//#include <unistd.h> // not on windows, not needed for mac or windows
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h> // not on windows, not needed for mac or windows
|
||||
#endif
|
||||
|
||||
#include <QtCore/QSettings>
|
||||
#include <QtCore/QSharedPointer>
|
||||
|
|
|
@ -12,7 +12,9 @@
|
|||
#include <math.h>
|
||||
#include <stdint.h>
|
||||
|
||||
//#include <unistd.h> // not on windows, not needed for mac or windows
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h> // not on windows, not needed for mac or windows
|
||||
#endif
|
||||
|
||||
#include <glm/glm.hpp>
|
||||
#include <glm/gtc/quaternion.hpp>
|
||||
|
|
Loading…
Reference in a new issue