remove extra tokens after endif for WIN32 conditionals

This commit is contained in:
Stephen Birarda 2013-03-19 11:10:42 -07:00
parent cd27c74a2d
commit 8ef885aaaf
7 changed files with 7 additions and 7 deletions

View file

@ -14,7 +14,7 @@
#include "Systime.h" #include "Systime.h"
#else #else
#include <sys/time.h> #include <sys/time.h>
#endif _WIN32 #endif
#include <sys/stat.h> #include <sys/stat.h>
#include <cstring> #include <cstring>

View file

@ -15,7 +15,7 @@ float fminf( float x, float y )
return x < y ? x : y; return x < y ? x : y;
} }
#endif _WIN32 #endif
const int NUM_BEADS = 75; const int NUM_BEADS = 75;
const float RADIUS = 50; // Radius of beads around finger const float RADIUS = 50; // Radius of beads around finger

View file

@ -12,7 +12,7 @@
#include "Systime.h" #include "Systime.h"
#else #else
#include <sys/time.h> #include <sys/time.h>
#endif _WIN32 #endif
const float PHI = 1.618f; const float PHI = 1.618f;

View file

@ -20,7 +20,7 @@
#include "Systime.h" #include "Systime.h"
#else #else
#include <sys/time.h> #include <sys/time.h>
#endif _WIN32 #endif
#ifdef __APPLE__ #ifdef __APPLE__
#include <regex.h> #include <regex.h>
#endif #endif

View file

@ -13,7 +13,7 @@
#include "Systime.h" #include "Systime.h"
#else #else
#include <sys/time.h> #include <sys/time.h>
#endif _WIN32 #endif
#include <glm/glm.hpp> #include <glm/glm.hpp>

View file

@ -27,7 +27,7 @@
#include "Systime.h" #include "Systime.h"
#else #else
#include <sys/time.h> #include <sys/time.h>
#endif _WIN32 #endif
#include <pthread.h> #include <pthread.h>
#include <ifaddrs.h> #include <ifaddrs.h>

View file

@ -15,7 +15,7 @@
#include "Systime.h" #include "Systime.h"
#else #else
#include <sys/time.h> #include <sys/time.h>
#endif _WIN32 #endif
double usecTimestamp(timeval *time); double usecTimestamp(timeval *time);
double usecTimestampNow(); double usecTimestampNow();