MallocStomp2.MinSize

MallocStomp2.MinSize

#Overview

name: MallocStomp2.MinSize

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/Core/Private/HAL/MallocStomp2.cpp:387

Scope: file

Source code excerpt:

	}
}
FAutoConsoleCommand GMallocStomp2SetMinSize(TEXT("MallocStomp2.MinSize"), TEXT("Set the minimum size MallocStomp2 should track"), FConsoleCommandWithArgsDelegate::CreateStatic(MallocStomp2SetMinSize));

static void MallocStomp2SetMaxSize(const TArray<FString>& Args)
{
	if (GMallocStomp2 != nullptr && Args.Num())
	{
		GMallocStomp2->MaxSize = FCString::Atoi64(*Args[0]);