From 64bc7eef5fc343c33acd6264ed26330de7d2e3a5 Mon Sep 17 00:00:00 2001 From: Jose Date: Wed, 14 Dec 2016 22:51:50 +0100 Subject: WinRT -> UWP renames --- cpp/include/IceUtil/Thread.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cpp/include/IceUtil/Thread.h') diff --git a/cpp/include/IceUtil/Thread.h b/cpp/include/IceUtil/Thread.h index f1dd851aa84..2431038a53e 100644 --- a/cpp/include/IceUtil/Thread.h +++ b/cpp/include/IceUtil/Thread.h @@ -15,7 +15,7 @@ #include #include -#ifdef ICE_OS_WINRT +#ifdef ICE_OS_UWP # include # include #endif @@ -35,7 +35,7 @@ public: // ThreadControl(); -#ifdef ICE_OS_WINRT +#ifdef ICE_OS_UWP ThreadControl(const std::shared_ptr&); #elif defined(_WIN32) ThreadControl(HANDLE, DWORD); @@ -80,7 +80,7 @@ public: // id() returns the Thread ID on Windows and the underlying pthread_t // on POSIX platforms. // -#ifdef ICE_OS_WINRT +#ifdef ICE_OS_UWP typedef std::thread::id ID; #elif defined(_WIN32) typedef DWORD ID; @@ -94,7 +94,7 @@ public: private: -#ifdef ICE_OS_WINRT +#ifdef ICE_OS_UWP std::shared_ptr _thread; std::thread::id _id; #elif defined(_WIN32) @@ -152,7 +152,7 @@ protected: bool _started; bool _running; -#ifdef ICE_OS_WINRT +#ifdef ICE_OS_UWP std::shared_ptr _thread; #elif defined(_WIN32) HANDLE _handle; -- cgit v1.2.3