From ab407a4a21c6384af78fd7e24d100a3629bcb0bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Mon, 17 Dec 2018 21:07:52 +0100 Subject: [PATCH] TWo warning fixes --- Core/Debugger/WebSocket/WebSocketUtils.h | 2 +- ext/native/net/http_server.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/Debugger/WebSocket/WebSocketUtils.h b/Core/Debugger/WebSocket/WebSocketUtils.h index 0bb6b88760..ac75838583 100644 --- a/Core/Debugger/WebSocket/WebSocketUtils.h +++ b/Core/Debugger/WebSocket/WebSocketUtils.h @@ -26,7 +26,7 @@ #include "ppsspp_config.h" -#ifdef PPSSPP_PLATFORM(UWP) +#if PPSSPP_PLATFORM(UWP) // Enum name overlapped with UWP macro, quick hack to disable it #undef OPTIONAL #endif diff --git a/ext/native/net/http_server.cpp b/ext/native/net/http_server.cpp index be74e4337e..d6faa8558c 100644 --- a/ext/native/net/http_server.cpp +++ b/ext/native/net/http_server.cpp @@ -24,7 +24,7 @@ #endif -#ifdef PPSSPP_PLATFORM(UWP) +#if PPSSPP_PLATFORM(UWP) #define in6addr_any IN6ADDR_ANY_INIT #endif