From 8c6eea44b864aff772d8a158eec61232d755c0c5 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 17 Nov 2014 19:48:28 -0500 Subject: [PATCH] fix win32 include on non win32 --- src/Timer.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Timer.h b/src/Timer.h index 7c95f8c..4037c94 100644 --- a/src/Timer.h +++ b/src/Timer.h @@ -2,10 +2,11 @@ #ifndef TIMER_H #define TIMER_H -#ifndef WIN32 +#ifdef WIN32 +#include +#else #include #endif -#include /// Timer Class, high resolution timer /**