mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 16:55:07 +02:00
remove extra tokens after endif for WIN32 conditionals
This commit is contained in:
parent
cd27c74a2d
commit
8ef885aaaf
7 changed files with 7 additions and 7 deletions
|
@ -14,7 +14,7 @@
|
|||
#include "Systime.h"
|
||||
#else
|
||||
#include <sys/time.h>
|
||||
#endif _WIN32
|
||||
#endif
|
||||
|
||||
#include <sys/stat.h>
|
||||
#include <cstring>
|
||||
|
|
|
@ -15,7 +15,7 @@ float fminf( float x, float y )
|
|||
return x < y ? x : y;
|
||||
}
|
||||
|
||||
#endif _WIN32
|
||||
#endif
|
||||
|
||||
const int NUM_BEADS = 75;
|
||||
const float RADIUS = 50; // Radius of beads around finger
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include "Systime.h"
|
||||
#else
|
||||
#include <sys/time.h>
|
||||
#endif _WIN32
|
||||
#endif
|
||||
|
||||
const float PHI = 1.618f;
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include "Systime.h"
|
||||
#else
|
||||
#include <sys/time.h>
|
||||
#endif _WIN32
|
||||
#endif
|
||||
#ifdef __APPLE__
|
||||
#include <regex.h>
|
||||
#endif
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include "Systime.h"
|
||||
#else
|
||||
#include <sys/time.h>
|
||||
#endif _WIN32
|
||||
#endif
|
||||
|
||||
#include <glm/glm.hpp>
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "Systime.h"
|
||||
#else
|
||||
#include <sys/time.h>
|
||||
#endif _WIN32
|
||||
#endif
|
||||
|
||||
#include <pthread.h>
|
||||
#include <ifaddrs.h>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include "Systime.h"
|
||||
#else
|
||||
#include <sys/time.h>
|
||||
#endif _WIN32
|
||||
#endif
|
||||
|
||||
double usecTimestamp(timeval *time);
|
||||
double usecTimestampNow();
|
||||
|
|
Loading…
Reference in a new issue