Fix iOS compile caused by attempt to fix non-unity

#rb
#rnx
#fyi Eric.Newman

[CL 10871608 by Marc Audy in Main branch]
This commit is contained in:
Marc Audy
2019-12-28 15:32:50 -05:00
parent c677148314
commit 7b58ccf035
2 changed files with 6 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#include "PlatformWebAuth.h"
#include "IOS/IOSPlatformWebAuth.h"
#if PLATFORM_IOS && !PLATFORM_TVOS
#import <Foundation/Foundation.h>

View File

@@ -2,6 +2,10 @@
#pragma once
#include "CoreMinimal.h"
#if PLATFORM_IOS && !PLATFORM_TVOS
#include "GenericPlatform/GenericPlatformWebAuth.h"
#include "WebAuth.h"
@@ -49,3 +53,4 @@ public:
typedef FIOSPlatformWebAuth FPlatformWebAuth;
#endif