From f48da0252ad492209e77b7e43a02a8f92ecaa4ed Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Thu, 1 Sep 2016 11:33:20 -0700 Subject: [PATCH] use the correct Qt windows macro --- libraries/recording/src/recording/Frame.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/recording/src/recording/Frame.h b/libraries/recording/src/recording/Frame.h index 73602c6d9a..b024fabc5d 100644 --- a/libraries/recording/src/recording/Frame.h +++ b/libraries/recording/src/recording/Frame.h @@ -14,7 +14,7 @@ #include -#ifdef Q_OS_WINDOWS +#ifdef Q_OS_WIN #include #else #include @@ -28,7 +28,7 @@ struct FrameHeader { using Time = uint32_t; // until we use a version of visual studio that has constexpr support, we can't use numeric_limits at compile time -#ifdef Q_OS_WINDOWS +#ifdef Q_OS_WIN static const Time INVALID_TIME = UINT32_MAX; #else static const Time INVALID_TIME = std::numeric_limits::max();