Hi,
I'm trying to build my project (C++ project) on macOS arm64 with a source-built Unreal Engine (release branch, Unreal 5.7.1).
The OnlineSubsystemEIK module fails to compile with many errors:
-
Numerous "-Wdangling-assignment" errors due to deprecated TCHAR_TO_ANSI/TCHAR_TO_UTF8 macros in EIK_SharedFunctionFile.h (lines ~451, 759, 767, 1169, 1177, 1923, 2956, 2958) and scattered in other files.
-
VoiceChat-related errors:
- Overriding 'final' functions like RegisterOnVoiceChatBeforeCaptureAudioSentDelegate
- Set3DPosition marked override but doesn't override / hides overloaded virtual
- Resulting in abstract class instantiation errors for FEOSVoiceChat and FEOSVoiceChatUser
Also seeing the include order upgrade warning (Unreal5_4).
Full build log attached (or pasted summary below).
Thanks for the great plugin – any chance these can be fixed for newer UE versions / clang strictness on Mac?
Running Xcodebuild [Project]Editor macosx Development [PROJECT_PATH]/[Project]/[Project].uproject
Platform: Mac (arm64)
Configuration: Development
[Upgrade Note]
Using backward-compatible include order (EngineIncludeOrderVersion.Unreal5_4).
Consider updating to EngineIncludeOrderVersion.Latest or Unreal5_7 in [Project]Editor.Target.cs.
Building OnlineSubsystemEIK module...
Main Errors:
-
Multiple "-Wdangling-assignment" errors in EIK_SharedFunctionFile.h caused by deprecated macros:
- TCHAR_TO_ANSI(*Token) → IdToken.JsonWebToken (line ~451)
- TCHAR_TO_ANSI(*AccountId) → ExternalAccountInfo.AccountId (line ~759)
- TCHAR_TO_ANSI(*DisplayName) → ExternalAccountInfo.DisplayName (line ~767)
- TCHAR_TO_ANSI(*Id) → Credentials.Id (line ~1169)
- TCHAR_TO_ANSI(*Token) → Credentials.Token (line ~1177)
- TCHAR_TO_ANSI(*StatName) → UserScoresQueryStatInfo.StatName (line ~1923)
- TCHAR_TO_UTF8(*Key) → AttributeData.Key (line ~2956)
- TCHAR_TO_UTF8(*ValueAsString) → AttributeData.Value.AsUtf8 (line ~2958)
Note: TCHAR_TO_ANSI and TCHAR_TO_UTF8 are deprecated in UE 5.x. Replace with StringCast(...) or StringCast(...).
-
VoiceChat interface issues in OnlineSubsystemEOS.cpp and EIKVoiceChat headers:
- Declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
- Declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
- 'Set3DPosition' marked 'override' but does not override any member function
- 'Set3DPosition' hides overloaded virtual function [-Woverloaded-virtual]
-
Abstract class instantiation errors:
- Allocating an object of abstract class type 'FEOSVoiceChatUser'
- Allocating an object of abstract class type 'FEOSVoiceChat'
-
Additional scattered dangling-assignment errors in various subsystem files:
- SessionsInterface/EIK_SessionsSubsystem.h (SessionName, BucketId, SessionId)
- StatsInterface/EIK_Stats_IngestStat.h (StatName)
- AntiCheatServer.cpp (ServerName)
- Various async/blueprint functions (InviteId, Message, etc.)
- Leaderboards, Lobby, Ecom interfaces (LeaderboardId, BucketId, CatalogNamespace, etc.)
Build failed due to compilation errors (-Werror treats warnings as errors).
All Errors here (right from Xcode) are:
Showing Recent Errors Only
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/SessionsInterface/EIK_SessionsSubsystem.h:73:27: object backing the pointer EosStruct.SessionName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/SessionsInterface/EIK_SessionsSubsystem.h:74:24: object backing the pointer EosStruct.BucketId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/SessionsInterface/EIK_SessionsSubsystem.h:78:25: object backing the pointer EosStruct.SessionId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/StatsInterface/EIK_Stats_IngestStat.h:36:19: object backing the pointer Data.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/AntiCheat/AntiCheatServer.cpp:52:26: object backing the pointer Options.ServerName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:117:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:150:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:152:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:117:15: 'FEOSVoiceChat::Set3DPosition' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:57:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:91:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:93:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:57:15: 'FEOSVoiceChatUser::Set3DPosition' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/AsyncFunctions/Extra/EIK_BlueprintFunctions.cpp:445:29: object backing the pointer RejectOptions.InviteId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/AsyncFunctions/Reports/EIK_SendReport_AsyncFunction.cpp:74:29: object backing the pointer ReportOptions.Message will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:117:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:150:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:152:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:117:15: 'FEOSVoiceChat::Set3DPosition' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:57:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:91:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:93:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:57:15: 'FEOSVoiceChatUser::Set3DPosition' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
/Users/[USER]/UnrealFromSource/UnrealEngine-release/Engine/Source/Runtime/Core/Public/Templates/SharedPointerInternals.h:425:34: allocating an object of abstract class type 'FEOSVoiceChatUser'
/Users/[USER]/UnrealFromSource/UnrealEngine-release/Engine/Source/Runtime/Core/Public/Templates/SharedPointerInternals.h:425:34: allocating an object of abstract class type 'FEOSVoiceChat'
/Users/[USER]/UnrealFromSource/UnrealEngine-release/Engine/Source/Runtime/Core/Public/Templates/SharedPointerInternals.h:425:34: allocating an object of abstract class type 'FEOSVoiceChat'
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LeaderboardsInterface/EIK_Leaderboards_QueryLeaderboardRanks.h:39:26: object backing the pointer Result.LeaderboardId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LobbyInterface/EIK_Lobby_CreateLobby.h:93:22: object backing the pointer Options.BucketId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/ConnectInterface/EIK_Connect_Login.h:44:25: object backing the pointer Result.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/ConnectInterface/EIK_Connect_Login.h:52:24: object backing the pointer Result.NsaIdToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/ConnectInterface/EIK_Connect_Login.h:92:19: object backing the pointer Result.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_Checkout.h:48:38: object backing the pointer Options.OverrideCatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryEntitlements.h:42:34: object backing the pointer Options.EntitlementNames[i] will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryOffers.cpp:51:51: object backing the pointer QueryOffersOptions.OverrideCatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryOwnership.h:44:30: object backing the pointer Options.CatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryOwnershipToken.h:44:30: object backing the pointer Options.CatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LeaderboardsInterface/EIK_LeaderboardsSubsystem.cpp:40:28: object backing the pointer Options.LeaderboardId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LeaderboardsInterface/EIK_LeaderboardsSubsystem.cpp:110:23: object backing the pointer Options.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LeaderboardsInterface/EIK_LeaderboardsSubsystem.cpp:134:23: object backing the pointer Options.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LeaderboardsInterface/EIK_Leaderboards_QueryLeaderboardRanks.h:39:26: object backing the pointer Result.LeaderboardId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LobbyInterface/EIK_LobbySubsystem.cpp:269:23: object backing the pointer Options.InviteId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LobbyInterface/EIK_LobbySubsystem.cpp:435:28: object backing the pointer Options.ConnectString will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_Checkout.h:48:38: object backing the pointer Options.OverrideCatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryEntitlements.h:42:34: object backing the pointer Options.EntitlementNames[i] will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryOwnership.h:44:30: object backing the pointer Options.CatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryOwnershipToken.h:44:30: object backing the pointer Options.CatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:117:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:150:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:152:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:117:15: 'FEOSVoiceChat::Set3DPosition' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:57:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:91:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:93:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:57:15: 'FEOSVoiceChatUser::Set3DPosition' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/Private/OnlineSubsystemEOS.cpp:89:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/Private/OnlineSubsystemEOS.cpp:123:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/Private/OnlineSubsystemEOS.cpp:125:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
Hi,
I'm trying to build my project (C++ project) on macOS arm64 with a source-built Unreal Engine (release branch, Unreal 5.7.1).
The OnlineSubsystemEIK module fails to compile with many errors:
Numerous "-Wdangling-assignment" errors due to deprecated TCHAR_TO_ANSI/TCHAR_TO_UTF8 macros in EIK_SharedFunctionFile.h (lines ~451, 759, 767, 1169, 1177, 1923, 2956, 2958) and scattered in other files.
VoiceChat-related errors:
Also seeing the include order upgrade warning (Unreal5_4).
Full build log attached (or pasted summary below).
Thanks for the great plugin – any chance these can be fixed for newer UE versions / clang strictness on Mac?
Running Xcodebuild [Project]Editor macosx Development [PROJECT_PATH]/[Project]/[Project].uproject
Platform: Mac (arm64)
Configuration: Development
[Upgrade Note]
Using backward-compatible include order (EngineIncludeOrderVersion.Unreal5_4).
Consider updating to EngineIncludeOrderVersion.Latest or Unreal5_7 in [Project]Editor.Target.cs.
Building OnlineSubsystemEIK module...
Main Errors:
Multiple "-Wdangling-assignment" errors in EIK_SharedFunctionFile.h caused by deprecated macros:
Note: TCHAR_TO_ANSI and TCHAR_TO_UTF8 are deprecated in UE 5.x. Replace with StringCast(...) or StringCast(...).
VoiceChat interface issues in OnlineSubsystemEOS.cpp and EIKVoiceChat headers:
Abstract class instantiation errors:
Additional scattered dangling-assignment errors in various subsystem files:
Build failed due to compilation errors (-Werror treats warnings as errors).
All Errors here (right from Xcode) are:
Showing Recent Errors Only
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/SessionsInterface/EIK_SessionsSubsystem.h:73:27: object backing the pointer EosStruct.SessionName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/SessionsInterface/EIK_SessionsSubsystem.h:74:24: object backing the pointer EosStruct.BucketId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/SessionsInterface/EIK_SessionsSubsystem.h:78:25: object backing the pointer EosStruct.SessionId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/StatsInterface/EIK_Stats_IngestStat.h:36:19: object backing the pointer Data.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/AntiCheat/AntiCheatServer.cpp:52:26: object backing the pointer Options.ServerName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:117:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:150:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:152:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:117:15: 'FEOSVoiceChat::Set3DPosition' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:57:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:91:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:93:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:57:15: 'FEOSVoiceChatUser::Set3DPosition' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/AsyncFunctions/Extra/EIK_BlueprintFunctions.cpp:445:29: object backing the pointer RejectOptions.InviteId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/AsyncFunctions/Reports/EIK_SendReport_AsyncFunction.cpp:74:29: object backing the pointer ReportOptions.Message will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:117:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:150:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:152:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:117:15: 'FEOSVoiceChat::Set3DPosition' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:57:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:91:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:93:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:57:15: 'FEOSVoiceChatUser::Set3DPosition' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
/Users/[USER]/UnrealFromSource/UnrealEngine-release/Engine/Source/Runtime/Core/Public/Templates/SharedPointerInternals.h:425:34: allocating an object of abstract class type 'FEOSVoiceChatUser'
/Users/[USER]/UnrealFromSource/UnrealEngine-release/Engine/Source/Runtime/Core/Public/Templates/SharedPointerInternals.h:425:34: allocating an object of abstract class type 'FEOSVoiceChat'
/Users/[USER]/UnrealFromSource/UnrealEngine-release/Engine/Source/Runtime/Core/Public/Templates/SharedPointerInternals.h:425:34: allocating an object of abstract class type 'FEOSVoiceChat'
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LeaderboardsInterface/EIK_Leaderboards_QueryLeaderboardRanks.h:39:26: object backing the pointer Result.LeaderboardId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LobbyInterface/EIK_Lobby_CreateLobby.h:93:22: object backing the pointer Options.BucketId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/ConnectInterface/EIK_Connect_Login.h:44:25: object backing the pointer Result.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/ConnectInterface/EIK_Connect_Login.h:52:24: object backing the pointer Result.NsaIdToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/ConnectInterface/EIK_Connect_Login.h:92:19: object backing the pointer Result.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_Checkout.h:48:38: object backing the pointer Options.OverrideCatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryEntitlements.h:42:34: object backing the pointer Options.EntitlementNames[i] will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryOffers.cpp:51:51: object backing the pointer QueryOffersOptions.OverrideCatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryOwnership.h:44:30: object backing the pointer Options.CatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryOwnershipToken.h:44:30: object backing the pointer Options.CatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LeaderboardsInterface/EIK_LeaderboardsSubsystem.cpp:40:28: object backing the pointer Options.LeaderboardId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LeaderboardsInterface/EIK_LeaderboardsSubsystem.cpp:110:23: object backing the pointer Options.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LeaderboardsInterface/EIK_LeaderboardsSubsystem.cpp:134:23: object backing the pointer Options.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LeaderboardsInterface/EIK_Leaderboards_QueryLeaderboardRanks.h:39:26: object backing the pointer Result.LeaderboardId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LobbyInterface/EIK_LobbySubsystem.cpp:269:23: object backing the pointer Options.InviteId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/LobbyInterface/EIK_LobbySubsystem.cpp:435:28: object backing the pointer Options.ConnectString will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_Checkout.h:48:38: object backing the pointer Options.OverrideCatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryEntitlements.h:42:34: object backing the pointer Options.EntitlementNames[i] will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryOwnership.h:44:30: object backing the pointer Options.CatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EcomInterface/EIK_Ecom_QueryOwnershipToken.h:44:30: object backing the pointer Options.CatalogNamespace will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:451:26: object backing the pointer IdToken.JsonWebToken will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:759:36: object backing the pointer ExternalAccountInfo.AccountId will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:767:38: object backing the pointer ExternalAccountInfo.DisplayName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1169:21: object backing the pointer Credentials.Id will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1177:24: object backing the pointer Credentials.Token will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:1923:38: object backing the pointer UserScoresQueryStatInfo.StatName will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2956:23: object backing the pointer AttributeData.Key will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/SdkFunctions/EIK_SharedFunctionFile.h:2958:32: object backing the pointer AttributeData.Value.AsUtf8 will be destroyed at the end of the full-expression [-Werror,-Wdangling-assignment]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:117:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:150:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:152:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChat.h:117:15: 'FEOSVoiceChat::Set3DPosition' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:57:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:91:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:93:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/EIKVoiceChat/Public/EOSVoiceChatUser.h:57:15: 'FEOSVoiceChatUser::Set3DPosition' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/Private/OnlineSubsystemEOS.cpp:89:15: 'Set3DPosition' marked 'override' but does not override any member functions
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/Private/OnlineSubsystemEOS.cpp:123:26: declaration of 'RegisterOnVoiceChatAfterCaptureAudioReadDelegate' overrides a 'final' function
/Users/[USER]/Documents/Unreal Projects/[Project]/Plugins/EOSIntegrationKit/Source/OnlineSubsystemEIK/Private/OnlineSubsystemEOS.cpp:125:26: declaration of 'RegisterOnVoiceChatBeforeCaptureAudioSentDelegate' overrides a 'final' function