Skip to content
Snippets Groups Projects
Commit b58b6826 authored by Simon Oehrl's avatar Simon Oehrl
Browse files

Merge branch 'feature/FixDeprecationWarnings' into 'develop'

Fix deprecation warnings.

See merge request VR-Group/unreal-development/universallogging!7
parents 41f0123c 5b8bb967
No related branches found
No related tags found
2 merge requests!16Develop,!7Fix deprecation warnings.
......@@ -39,8 +39,8 @@ private:
static LogFileManager Log_File_Manager;
TMap<FString, TUniquePtr<LogStreamImpl>> Streams;
FString Session_ID;
TBaseDelegate<void, UWorld*, const UWorld::InitializationValues> On_Post_World_Initialization_Delegate;
TBaseDelegate<void, UWorld*> On_Pre_World_Finish_Destroy_Delegate;
TBaseDelegate<void, UWorld*, ELevelTick, float> On_World_Post_Actor_Tick_Delegate;
TDelegate<void(UWorld*, const UWorld::InitializationValues)> On_Post_World_Initialization_Delegate;
TDelegate<void(UWorld*)> On_Pre_World_Finish_Destroy_Delegate;
TDelegate<void(UWorld*, ELevelTick, float)> On_World_Post_Actor_Tick_Delegate;
AOnScreenLog* On_Screen_Log_Actor;
};
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment