UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
PrintStaleReferencesOptions.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "HAL/Platform.h"
7
8/* Options for FReferenceChainSearch::FindAndPrintStaleReferencesToObject function */
10{
11 None = 0,
12 Log = 1,
13 Display = 2,
14 Warning = 3,
15 Error = 4,
16 Fatal = 5,
17 Ensure = 0x00000100,
18
19 // Only search for direct references to the object or one of its inners, not a full reference chain
20 Minimal = 0x00000200,
21
22 VerbosityMask = 0x000000ff
23};
#define ENUM_CLASS_FLAGS(Enum)
Definition EnumClassFlags.h:6
EPrintStaleReferencesOptions
Definition PrintStaleReferencesOptions.h:10