UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
Toggles.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5// HEADER_UNIT_SKIP - unused warnings
6
7#include "BuildMacros.h"
8
9namespace AutoRTFM
10{
11
12// Should we collect stats on the AutoRTFM runtime or not.
13static constexpr bool bCollectStats = false;
14
15// Tracking the locations of allocations is helpful for catching invalid frees.
16#if AUTORTFM_BUILD_SHIPPING
17static constexpr bool bTrackAllocationLocations = false;
18#else
19static constexpr bool bTrackAllocationLocations = true;
20#endif
21
22} // namespace AutoRTFM
Definition API.cpp:57