diff options
Diffstat (limited to 'cpp/test/include/TestCommon.h')
-rw-r--r-- | cpp/test/include/TestCommon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/include/TestCommon.h b/cpp/test/include/TestCommon.h index e9c34484361..de0ef4c7f61 100644 --- a/cpp/test/include/TestCommon.h +++ b/cpp/test/include/TestCommon.h @@ -20,7 +20,7 @@ #include <Ice/ProxyF.h> #include <Ice/Initialize.h> -#if defined(ICE_OS_WINRT) || (TARGET_OS_IPHONE != 0) +#if defined(ICE_OS_UWP) || (TARGET_OS_IPHONE != 0) # include <Ice/Initialize.h> # include <Ice/Logger.h> # include <Ice/LocalException.h> @@ -57,7 +57,7 @@ TEST_API std::string getTestHost(const Ice::PropertiesPtr&); TEST_API int getTestPort(const Ice::PropertiesPtr&, int); TEST_API Ice::InitializationData getTestInitData(int&, char*[]); -#if !defined(ICE_OS_WINRT) && (TARGET_OS_IPHONE == 0) +#if !defined(ICE_OS_UWP) && (TARGET_OS_IPHONE == 0) void inline testFailed(const char* expr, const char* file, unsigned int line) |