You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Converted a frequently hit ensure, to a warning log. #rb none [FYI] Jake.Leonard #ROBOMERGE-OWNER: ryan.gerleve #ROBOMERGE-AUTHOR: john.barrett #ROBOMERGE-SOURCE: CL 4806709 via CL 4809354 via CL 4809590 #ROBOMERGE-BOT: ENGINE (Main -> Dev-Networking) [CL 4809763 by john barrett in Dev-Networking branch]
18 lines
441 B
C++
18 lines
441 B
C++
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "NetAnalyticsAggregatorConfig.h"
|
|
|
|
|
|
/**
|
|
* UNetAnalyticsAggregatorConfig
|
|
*/
|
|
UNetAnalyticsAggregatorConfig::UNetAnalyticsAggregatorConfig(const FObjectInitializer& ObjectInitializer)
|
|
: Super(ObjectInitializer)
|
|
{
|
|
}
|
|
|
|
void UNetAnalyticsAggregatorConfig::OverridePerObjectConfigSection(FString& SectionName)
|
|
{
|
|
SectionName = GetName() + TEXT(" ") + GetClass()->GetName();
|
|
}
|