Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FLinkerLoad
Description
Checks to see if an export (or one up its outer chain) is currently in the middle of having its class dependency force-regenerated. This function is meant to help avoid unnecessary recursion, as ForceRegenerateClass() does nothing itself to stave off infinite recursion.
| Name | IsExportBeingResolved |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/LinkerLoad.h |
| Include Path | #include "UObject/LinkerLoad.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/Blueprint/BlueprintSupport.cpp |
bool IsExportBeingResolved
(
int32 ExportIndex
)
True if the specified export's class (or one up its outer chain) is currently being force-regenerated.
Parameters
| Name | Remarks |
|---|---|
| ExportIndex | Identifies the export you're about to call CreateExport() on. |