You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fixed conversion warnings in TraceAnalysis and in TraceServices modules. #rb Catalin.Dragoiu [CL 28339045 by ionut matasaru in ue5-main branch]
17 lines
345 B
C#
17 lines
345 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System;
|
|
using System.IO;
|
|
|
|
public class TraceLog : ModuleRules
|
|
{
|
|
public TraceLog(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
|
|
bRequiresImplementModule = false;
|
|
PublicIncludePathModuleNames.Add("Core");
|
|
}
|
|
}
|