UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
SharedPointerFwd.h File Reference
#include "HAL/Platform.h"

Go to the source code of this file.

Enumerations

enum class  ESPMode : uint8 { NotThreadSafe = 0 , ThreadSafe = 1 }
 

Enumeration Type Documentation

◆ ESPMode

enum class ESPMode : uint8
strong

ESPMode is used select between either 'fast' or 'thread safe' shared pointer types. This is only used by templates at compile time to generate one code path or another.

Enumerator
NotThreadSafe 

Forced to be not thread-safe.

ThreadSafe 

Thread-safe, never spin locks, but slower