gc.HistorySize

gc.HistorySize

#Overview

name: gc.HistorySize

This variable is created as a Console Variable (cvar).

It is referenced in 1 C++ source file.

#Summary

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Source/Runtime/CoreUObject/Private/UObject/GarbageCollectionHistory.cpp:37

Scope: file

Source code excerpt:


static FAutoConsoleCommand CmdSetHistorySize(
	TEXT("gc.HistorySize"),
	TEXT(""),
	FConsoleCommandWithArgsDelegate::CreateLambda([](const TArray<FString>& Args)
		{
			if (Args.Num())
			{
				int32 HistorySize = FMath::Max(0, FCString::Atoi(*Args[0]));