Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/o3dgc_common_lib/inc/o3dgcTimer.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ THE SOFTWARE.

#ifdef WIN32
#include <windows.h>
#elif __MACH__
#elif defined(__MACH__) && defined (__APPLE__)
#include <mach/clock.h>
#include <mach/mach.h>
#else
Expand Down Expand Up @@ -71,7 +71,7 @@ namespace o3dgc
LARGE_INTEGER m_freq;

};
#elif __MACH__
#elif defined(__MACH__) && defined (__APPLE__)
class Timer
{
public:
Expand Down